Skip to content

Commit

Permalink
Merge pull request #2041 from tijlleenders/vin/2039/fix-cant_add_goal…
Browse files Browse the repository at this point in the history
…s_from_myTimePage

fix: cant add goal in mytimepage as app errors out
  • Loading branch information
Tushar-4781 authored Sep 15, 2024
2 parents d8d73a4 + 05e186f commit 13063cb
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,14 @@ const App = () => {
{!isLanguageChosen ? (
<Route path="/" element={<LandingPage />} />
) : (
<Route path="/" element={<MyTimePage />} />
<Route
path="/"
element={
<ActiveGoalProvider>
<MyTimePage />
</ActiveGoalProvider>
}
/>
)}
<Route path="/Feedback" element={<FeedbackPage />} />
<Route
Expand Down

0 comments on commit 13063cb

Please sign in to comment.