Update src/pages/settings/index.tsx
All checks were successful
Release to Staging / build_and_release (push) Successful in 46s

This commit is contained in:
freakoverse 2024-09-24 17:48:54 +00:00
parent 7002e3e18d
commit 26accf4eca

View File

@ -67,7 +67,7 @@ const SettingTabs = () => {
const navLinks = [ const navLinks = [
{ path: appRoutes.settingsProfile, label: 'Profile', icon: <ProfileSVG /> }, { path: appRoutes.settingsProfile, label: 'Profile', icon: <ProfileSVG /> },
{ path: appRoutes.settingsRelays, label: 'Relays', icon: <RelaySVG /> }, { path: appRoutes.settingsRelays, label: 'Relays (WIP)', icon: <RelaySVG /> },
{ {
path: appRoutes.settingsPreferences, path: appRoutes.settingsPreferences,
label: 'Preferences (WIP)', label: 'Preferences (WIP)',
@ -78,7 +78,7 @@ const SettingTabs = () => {
if (isAdmin) { if (isAdmin) {
navLinks.push({ navLinks.push({
path: appRoutes.settingsAdmin, path: appRoutes.settingsAdmin,
label: 'Admin', label: 'Admin (WIP)',
icon: <AdminSVG /> icon: <AdminSVG />
}) })
} }