diff --git a/utils/api/configurations.js b/utils/api/configurations.js index 8859db5..f0b6abe 100644 --- a/utils/api/configurations.js +++ b/utils/api/configurations.js @@ -148,7 +148,7 @@ export const configureStatus = (status) => { break default: - status = 'Supplier Review' + status = 'Under Review' } return status diff --git a/utils/constants.js b/utils/constants.js index 8d77736..bf8ad90 100644 --- a/utils/constants.js +++ b/utils/constants.js @@ -130,7 +130,7 @@ export const LEGAL_NOTICES = [ export const STATUS_ARRAY = [ { - statusLabel: 'Supplier Review', + statusLabel: 'Under Review', statusIcon: 'fa-list-check', }, { diff --git a/utils/theme/variables.js b/utils/theme/variables.js index eaab568..fd15467 100644 --- a/utils/theme/variables.js +++ b/utils/theme/variables.js @@ -24,7 +24,7 @@ export const statusBarBg = 'light' // These are the colors used for the request and document statuses export const statusColors = { - 'Supplier Review': { + 'Under Review': { bg: primary, text: white, },