Skip to content

Commit 486d187

Browse files
authored
Rename error-page.tsx to ErrorPage.tsx (#1497)
## Summary - Renamed the route error component module from kebab-case `error-page.tsx` to PascalCase `ErrorPage.tsx`, matching the rest of `src/`. - Updated the `main.tsx` import accordingly. Closes #1492. ## Test plan - [x] `pnpm lint` (ESLint / Prettier hooks pass on CI) - [x] Open a route that renders the error boundary and confirm the page still loads. Made with [Cursor](https://cursor.com)
2 parents ab81948 + 911f972 commit 486d187

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

File renamed without changes.

src/main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { FocusStyleManager, OverlaysProvider } from '@blueprintjs/core';
1010
import './index.scss';
1111
import { HelmetProvider } from 'react-helmet-async';
1212
import { RouterProvider } from 'react-router';
13-
import ErrorPage from './error-page';
13+
import ErrorPage from './ErrorPage';
1414
import Layout from './components/Layout';
1515
import getServerConfig from './functions/getServerConfig';
1616
import { SocketProvider } from './libs/SocketProvider';

0 commit comments

Comments
 (0)