Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix CI errors
  • Loading branch information
s1gr1d committed Oct 23, 2025
commit 8cd26a2ec2de16f3da56bd3b2ea64c00429212cc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"react-dom": "18.2.0",
"react-router-dom": "^6.4.1",
"react-scripts": "5.0.1",
"typescript": "~5.0.0"
"typescript": "~4.9.5"
},
"scripts": {
"build": "react-scripts build",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ import {
import Index from './pages/Index';
import User from './pages/User';
import Group from './pages/Group';
import Post from './pages/Post';
import PostFeatured from './pages/PostFeatured';
import PostRelated from './pages/PostRelated';
import PostIndex from './pages/PostIndex';

const replay = Sentry.replayIntegration();

Expand Down Expand Up @@ -84,8 +80,6 @@ const router = sentryCreateHashRouter([
},
]);

console.log(router.routes);

const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement);

root.render(<RouterProvider router={router} />);