Skip to content

Commit b3a15fd

Browse files
committed
fix: random pages.
1 parent 78ce76b commit b3a15fd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/AnimatedRoutes.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const NotepadPage = lazy(() => import('../pages/apps/NotepadPage'));
7878
const PinnedAppPage = lazy(() => import('../pages/PinnedAppPage'));
7979
const SettingsPage = lazy(() => import('../pages/SettingsPage'));
8080
const TimelinePage = lazy(() => import('../pages/TimelinePage'));
81-
const UsefulLinksPage = lazy(() => import('../pages/UsefulLinksPage'));
81+
const RandomPage = lazy(() => import('../pages/RandomPage'));
8282
const NotebooksPage = lazy(() => import('../pages/notebooks/NotebooksPage'));
8383
const NotebookViewerPage = lazy(() => import('../pages/notebooks/NotebookViewerPage'));
8484
const NewsPage = lazy(() => import('../pages/NewsPage'));
@@ -403,7 +403,7 @@ function AnimatedRoutes() {
403403
variants={pageVariants}
404404
transition={pageTransition}
405405
>
406-
<UsefulLinksPage />
406+
<RandomPage />
407407
</motion.div>
408408
}
409409
/>
@@ -1464,4 +1464,4 @@ function AnimatedRoutes() {
14641464
);
14651465
}
14661466

1467-
export default AnimatedRoutes;
1467+
export default AnimatedRoutes;

0 commit comments

Comments
 (0)