Skip to content

Commit

Permalink
OV-44: * updated with next
Browse files Browse the repository at this point in the history
  • Loading branch information
XCODE89 committed Sep 6, 2024
1 parent 232c13b commit e2bb626
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions frontend/src/routes/routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { App } from '~/app/app.js';
import { Auth } from '~/bundles/auth/pages/auth.js';
import { ProtectedRoute } from '~/bundles/common/components/components.js';
import { AppRoute } from '~/bundles/common/enums/enums.js';
import { NotFound } from '~/bundles/common/pages/not-found/not-found.js';
import { Home } from '~/bundles/home/pages/home.js';
import { MyAvatar } from '~/bundles/my-avatar/pages/my-avatar.js';
import { Studio } from '~/bundles/studio/pages/studio.js';
Expand Down Expand Up @@ -43,6 +44,10 @@ const routes = [
</ProtectedRoute>
),
},
{
path: AppRoute.ANY,
element: <NotFound />,
},
],
},
];
Expand Down

0 comments on commit e2bb626

Please sign in to comment.