Skip to content

Commit 19d43eb

Browse files
committed
fix: address Copilot review feedback
- Change 'Add to Lineup (Approved)' to 'Add to Publication Lineup' - Update aria-label to 'Blog publishing workflow steps' for better context Signed-off-by: Gauarv Chaudhary <[email protected]>
1 parent 619e48e commit 19d43eb

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/components/sections/PublishingFlowSection.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,12 @@ const publishingSteps: TimelineStep[] = [
3939
},
4040
{
4141
id: "add-to-lineup",
42-
title: "Add to Lineup (Approved)",
42+
title: "Add to Publication Lineup",
4343
description:
4444
"Once approved, your blog is added to our publishing queue. We'll schedule it for publication and prepare any final formatting touches.",
4545
icon: <ListChecks className="w-full h-full" />,
4646
},
47+
4748
{
4849
id: "final-publish",
4950
title: "Final Publish",

src/components/ui/timeline.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export function Timeline({ steps, className }: TimelineProps) {
3030
<div
3131
className={cn("relative", className)}
3232
role="list"
33-
aria-label="Timeline steps"
33+
aria-label="Blog publishing workflow steps"
3434
>
3535
{steps.map((step, index) => (
3636
<TimelineItem
@@ -104,7 +104,7 @@ export function HorizontalTimeline({ steps, className }: { steps: TimelineStep[]
104104
<div
105105
className="grid grid-cols-5 gap-4"
106106
role="list"
107-
aria-label="Timeline steps"
107+
aria-label="Blog publishing workflow steps"
108108
>
109109
{steps.map((step, index) => (
110110
<div

0 commit comments

Comments
 (0)