diff --git a/src/components/Dashboard.tsx b/src/components/Dashboard.tsx index 17ed3ad..bd2108d 100644 --- a/src/components/Dashboard.tsx +++ b/src/components/Dashboard.tsx @@ -162,14 +162,8 @@ export function Dashboard({ user }: DashboardProps) { await checkAndUnlockAchievements(usage, prefs, achvs); // Check if running as PWA (home screen shortcut) - const isStandalone = window.matchMedia('(display-mode: standalone)').matches || - (window.navigator as Navigator & { standalone?: boolean }).standalone === true; - - // Always show substance picker when accessed as PWA shortcut - if (isStandalone) { - setIsSubstancePickerOpen(true); - } else if (shouldShowUsagePrompt()) { - setIsSubstancePickerOpen(true); + // No longer automatically showing substance picker + if (shouldShowUsagePrompt()) { markPromptShown(); } }