fix validation & implement profile page (#5)

* fix validation

* implement profile page

* catch error
This commit is contained in:
UUBulb
2024-11-26 21:20:56 +08:00
committed by GitHub
parent b0476bc3a3
commit 7325939198
13 changed files with 258 additions and 43 deletions

View File

@@ -27,6 +27,7 @@ import AlertRulePage from './routes/alert-rule';
import SettingsPage from './routes/settings';
import UserPage from './routes/user';
import WAFPage from './routes/waf';
import ProfilePage from './routes/profile';
const router = createBrowserRouter([
{
@@ -90,6 +91,10 @@ const router = createBrowserRouter([
path: "/dashboard/terminal/:id",
element: <TerminalPage />,
},
{
path: "/dashboard/profile",
element: <ServerProvider withServer withServerGroup><ProfilePage /></ServerProvider>,
},
{
path: "/dashboard/settings",
element: <SettingsPage />,