fix: stopTour als Onboarding Tour Skipped statt Completed tracken

Vorzeitige Tour-Abbrüche über stopTour wurden fälschlich als Abschluss gezählt und verfälschten den Onboarding-Funnel.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-05-29 19:05:54 +02:00
co-authored by Cursor
parent 2926d743fb
commit 9502719816
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -132,7 +132,7 @@ export function AppTourProvider({ children }: { children: ReactNode }) {
}, [])
const stopTour = useCallback(() => {
dismissTour('completed', stepIndex)
dismissTour('skipped', stepIndex)
}, [dismissTour, stepIndex])
const skipTour = useCallback(() => {