On the “Add Route Guards to React” part,
the code to copy/paste reads like this(and it does not work):
<Route
path="/profile"
element={<AuthenticationGuard component={<ProfilePage />} />}
/>
Switched it to(it now works):
<Route
path="/profile"
element={<AuthenticationGuard component={ProfilePage} />}
/>
–The problem is the < /> inside the { }