refactor: remove unused variable assignment in ClearancePhaseStepper

This commit is contained in:
Marshal
2026-07-03 21:17:12 +00:00
parent 85c2fd1428
commit 1f3368dcc3

View File

@@ -74,7 +74,7 @@ export function ClearancePhaseStepper({
const isComplete = index < activeIdx; const isComplete = index < activeIdx;
const isActive = index === activeIdx; const isActive = index === activeIdx;
const isLast = index === phases.length - 1; const isLast = index === phases.length - 1;
const doneOrActive = isComplete || isActive; // const doneOrActive = isComplete || isActive;
return ( return (
<Group key={phase} gap={12} wrap="nowrap" align="flex-start"> <Group key={phase} gap={12} wrap="nowrap" align="flex-start">