From 9f61490af3f19e11cd4d2cc35fac626f63d4bd27 Mon Sep 17 00:00:00 2001 From: Alexander Alemayhu Date: Tue, 19 May 2026 16:39:08 +0200 Subject: [PATCH] fix: lower onboarding-tour cutoff to today's ship date The wave's onboarding tour was gated on created_at >= 2026-06-08, the migration filename's sequential placeholder, not the calendar date. Lower the cutoff to today (2026-05-19) so accounts created from the ship date forward see the tour, matching the spec intent of "more than 24 hours before the feature ships". --- .../UploadPage/components/OnboardingTour/OnboardingTour.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/pages/UploadPage/components/OnboardingTour/OnboardingTour.tsx b/web/src/pages/UploadPage/components/OnboardingTour/OnboardingTour.tsx index 0fd2d6689..a0889fd78 100644 --- a/web/src/pages/UploadPage/components/OnboardingTour/OnboardingTour.tsx +++ b/web/src/pages/UploadPage/components/OnboardingTour/OnboardingTour.tsx @@ -26,7 +26,7 @@ const STEPS: ReadonlyArray = [ }, ]; -const MIGRATION_CUTOFF = '2026-06-08T00:00:00.000Z'; +const MIGRATION_CUTOFF = '2026-05-19T00:00:00.000Z'; interface OnboardingTourProps { createdAt: string | null;