converted account and organisation pages to dialogs

This commit is contained in:
Oliver Bryan
2026-01-03 12:42:39 +00:00
parent 33da8bde85
commit 5160a6a554
11 changed files with 441 additions and 431 deletions

View File

@@ -1,10 +1,8 @@
import { BrowserRouter, Route, Routes } from "react-router-dom";
import Account from "@/Account";
import { Auth } from "@/components/auth-provider";
import NotFound from "@/components/NotFound";
import { ThemeProvider } from "@/components/theme-provider";
import Index from "@/Index";
import Organisations from "@/Organisations";
import Test from "@/Test";
function App() {
@@ -14,8 +12,6 @@ function App() {
<BrowserRouter>
<Routes>
<Route path="/" element={<Index />} />
<Route path="/settings/account" element={<Account />} />
<Route path="/settings/organisations" element={<Organisations />} />
<Route path="/test" element={<Test />} />
<Route path={"*"} element={<NotFound />} />
</Routes>