@@ -18,14 +18,14 @@ import { LeaderboardPage } from "./pages/leaderboard/LeaderboardPage";
1818import { LoginPage } from "./pages/login/LoginPage" ;
1919import { ProfilePage } from "./pages/profile/ProfilePage" ;
2020import { ProfileSearchPage } from "./pages/profile/ProfileSearchPage" ;
21- import { Settings } from "./pages/settings/Settings " ;
21+ import { SettingsPage } from "./pages/settings/SettingsPage " ;
2222import { TestConfig } from "./pages/test/TestConfig" ;
2323import { Popups } from "./popups/Popups" ;
2424
2525const components : Record < string , ( ) => JSXElement > = {
2626 footer : ( ) => < Footer /> ,
2727 aboutpage : ( ) => < AboutPage /> ,
28- settingspage : ( ) => < Settings /> ,
28+ settingspage : ( ) => < SettingsPage /> ,
2929 accountpage : ( ) => < AccountPage /> ,
3030 loginpage : ( ) => < LoginPage /> ,
3131 leaderboardpage : ( ) => < LeaderboardPage /> ,
@@ -40,7 +40,6 @@ const components: Record<string, () => JSXElement> = {
4040 devtools : ( ) => < DevTools /> ,
4141 testconfig : ( ) => < TestConfig /> ,
4242 commandlinehotkey : ( ) => < CommandlineHotkey /> ,
43- solidSettings : ( ) => < Settings /> ,
4443} ;
4544
4645function mountToMountpoint ( name : string , component : ( ) => JSXElement ) : void {
0 commit comments