diff --git a/src/App.tsx b/src/App.tsx index a5ae85a..c2dff24 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -24,6 +24,7 @@ import { useRegisterSW } from "virtual:pwa-register/react"; import { estimateCalories, getSavedUserWeight } from "./utils/calorieEstimator"; import { CursorGlow } from "./components/CursorGlow"; import { PageErrorBoundary } from "./components/PageErrorBoundary"; +import { ExitConfirmModal } from "./components/ExitConfirmModal"; const WelcomeScreen = lazy(() => import("./components/WelcomeScreen").then(m => ({ default: m.WelcomeScreen }))); const SummaryScreen = lazy(() => import("./components/SummaryScreen").then(m => ({ default: m.SummaryScreen }))); const TrophyRoom = lazy(() => import("./components/TrophyRoom").then(m => ({ default: m.TrophyRoom }))); @@ -488,79 +489,17 @@ function App() { )} {showExitModal && ( -
Are you sure you want to end your session?
- -{message}
+Are you sure you want to end your workout session?
-