diff --git a/src/components/Projects/ProjectStepper.tsx b/src/components/Projects/ProjectStepper.tsx index 526d3b7cd..60cd3d374 100644 --- a/src/components/Projects/ProjectStepper.tsx +++ b/src/components/Projects/ProjectStepper.tsx @@ -14,17 +14,28 @@ import { cn } from '../../lib/classname.ts'; type StepperActionProps = { isActive?: boolean; isCompleted?: boolean; + onClick?: () => void; icon: LucideIcon; text: string; number: number; }; function StepperAction(props: StepperActionProps) { - const { isActive, isCompleted, icon: DisplayIcon, text, number } = props; + const { + isActive, + onClick = () => null, + isCompleted, + icon: DisplayIcon, + text, + number, + } = props; if (isActive) { return ( -