diff --git a/src/components/onboarding/FTUXModal.tsx b/src/components/onboarding/FTUXModal.tsx index 480be996..a6b830d2 100644 --- a/src/components/onboarding/FTUXModal.tsx +++ b/src/components/onboarding/FTUXModal.tsx @@ -15,10 +15,11 @@ export function FTUXModal({ onComplete, onStartTutorial }: FTUXModalProps) { const [showSkipConfirm, setShowSkipConfirm] = useState(false); const handleNext = () => { - if (currentStep === 4) { + if (currentStep === 3) { // Last step - user chose "Skip Tutorial" setFTUXCompleted(true); onComplete(); + console.log("User completed FTUX"); } else { setCurrentStep((currentStep + 1) as FTUXStep); }