diff --git a/app/javascript/packages/step-indicator/step-indicator-step.tsx b/app/javascript/packages/step-indicator/step-indicator-step.tsx index eee02e09fbf..0740cc87b34 100644 --- a/app/javascript/packages/step-indicator/step-indicator-step.tsx +++ b/app/javascript/packages/step-indicator/step-indicator-step.tsx @@ -3,7 +3,6 @@ import { t } from '@18f/identity-i18n'; export enum StepStatus { CURRENT, COMPLETE, - PENDING, INCOMPLETE, } @@ -20,7 +19,7 @@ export interface StepIndicatorStepProps { } function StepIndicatorStep({ title, status }: StepIndicatorStepProps) { - const { CURRENT, COMPLETE, PENDING, INCOMPLETE } = StepStatus; + const { CURRENT, COMPLETE, INCOMPLETE } = StepStatus; const classes = [ 'step-indicator__step', @@ -38,9 +37,6 @@ function StepIndicatorStep({ title, status }: StepIndicatorStepProps) { case INCOMPLETE: statusText = t('step_indicator.status.not_complete'); break; - case PENDING: - statusText = t('step_indicator.status.pending'); - break; default: statusText = t('step_indicator.status.current'); } @@ -48,9 +44,7 @@ function StepIndicatorStep({ title, status }: StepIndicatorStepProps) { return (
  • {title} - - {statusText} - + {statusText}
  • ); } diff --git a/config/locales/step_indicator/en.yml b/config/locales/step_indicator/en.yml index 4867d45caac..c8607146f30 100644 --- a/config/locales/step_indicator/en.yml +++ b/config/locales/step_indicator/en.yml @@ -16,4 +16,3 @@ en: complete: Completed current: Current step not_complete: Not completed - pending: Pending diff --git a/config/locales/step_indicator/es.yml b/config/locales/step_indicator/es.yml index d878afd0bad..1d207d3ee07 100644 --- a/config/locales/step_indicator/es.yml +++ b/config/locales/step_indicator/es.yml @@ -16,4 +16,3 @@ es: complete: Completo current: Siguiente paso not_complete: No se ha completado - pending: Pendiente diff --git a/config/locales/step_indicator/fr.yml b/config/locales/step_indicator/fr.yml index 3323146f8dc..4eca9bc6134 100644 --- a/config/locales/step_indicator/fr.yml +++ b/config/locales/step_indicator/fr.yml @@ -16,4 +16,3 @@ fr: complete: Terminé current: Étape en cours not_complete: Non terminé - pending: En attente