Skip to content

Commit

Permalink
Add webUI settings again (#564)
Browse files Browse the repository at this point in the history
Was accidentally removed with e10cbf9
  • Loading branch information
schroda authored Jan 21, 2024
1 parent 24379c1 commit 69a62b6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ import { ServerSettings } from '@/screens/settings/ServerSettings.tsx';
import { ServerUpdateChecker } from '@/components/settings/ServerUpdateChecker.tsx';
import { requestManager } from '@/lib/requests/RequestManager.ts';
import { ExtensionSettings } from '@/screens/settings/ExtensionSettings.tsx';
import { WebUISettings } from '@/screens/settings/WebUISettings.tsx';

if (process.env.NODE_ENV !== 'production') {
// Adds messages only in a dev environment
Expand Down Expand Up @@ -98,6 +99,7 @@ export const App: React.FC = () => (
<Route path="downloadSettings" element={<DownloadSettings />} />
<Route path="backup" element={<Backup />} />
<Route path="server" element={<ServerSettings />} />
<Route path="webUI" element={<WebUISettings />} />
<Route path="extensionSettings" element={<ExtensionSettings />} />
</Route>

Expand Down

0 comments on commit 69a62b6

Please sign in to comment.