Skip to content

Commit

Permalink
Restored status view inadvertently removed.
Browse files Browse the repository at this point in the history
See 2f06f3.

Co-authored-by: David Lyon <[email protected]>
  • Loading branch information
dakotablair and dauglyon committed May 15, 2024
1 parent 81d6ff9 commit fa461dd
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions src/app/Routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ import {
Routes as RRRoutes,
useLocation,
} from 'react-router-dom';

import {
CollectionsList,
CollectionDetail,
detailPath,
detailDataProductPath,
} from '../features/collections/Collections';
import Legacy, { LEGACY_BASE_ROUTE } from '../features/legacy/Legacy';
import { Fallback } from '../features/legacy/IFrameFallback';
import Navigator, {
Expand All @@ -14,12 +19,7 @@ import Navigator, {
} from '../features/navigator/Navigator';
import PageNotFound from '../features/layout/PageNotFound';
import ProfileWrapper from '../features/profile/Profile';
import {
CollectionsList,
CollectionDetail,
detailPath,
detailDataProductPath,
} from '../features/collections/Collections';
import Status from '../features/status/Status';
import {
useAppSelector,
useFilteredParams,
Expand All @@ -36,6 +36,7 @@ const Routes: FC = () => {
return (
<RRRoutes>
<Route path={`${LEGACY_BASE_ROUTE}/*`} element={<Legacy />} />
<Route path="/status" element={<Authed element={<Status />} />} />
<Route
path="/profile/:usernameRequested/narratives"
element={<Authed element={<ProfileWrapper />} />}
Expand Down

0 comments on commit fa461dd

Please sign in to comment.