From 64aa4be4ddd2851a1e25d7cff75d789c5acf89e0 Mon Sep 17 00:00:00 2001 From: Rhys Lloyd Date: Sat, 27 Dec 2025 00:13:13 -0800 Subject: [PATCH] tweak timeline text --- web/src/app/_components/review/WorkflowStepper.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/src/app/_components/review/WorkflowStepper.tsx b/web/src/app/_components/review/WorkflowStepper.tsx index e9eef19..7c2da15 100644 --- a/web/src/app/_components/review/WorkflowStepper.tsx +++ b/web/src/app/_components/review/WorkflowStepper.tsx @@ -54,7 +54,7 @@ const submissionWorkflow: WorkflowStep[] = [ { label: 'Validated', statuses: [Status.Validating, Status.Validated], - description: 'Automated validation' + description: 'Scripts approved' }, { label: 'Uploaded', @@ -64,7 +64,7 @@ const submissionWorkflow: WorkflowStep[] = [ { label: 'Released', statuses: [Status.Releasing, Status.Release], - description: 'Live in production' + description: 'Live in-game' } ]; @@ -87,7 +87,7 @@ const mapfixWorkflow: WorkflowStep[] = [ { label: 'Validated', statuses: [Status.Validating, Status.Validated], - description: 'Automated validation' + description: 'Scripts approved' }, { label: 'Uploaded', @@ -97,7 +97,7 @@ const mapfixWorkflow: WorkflowStep[] = [ { label: 'Released', statuses: [Status.Releasing, Status.Release], - description: 'Live in production' + description: 'Live in-game' } ]; -- 2.49.1