@@ -108,6 +126,19 @@ const PersonalListsSettingsPage = forwardRef(
+
+
+
+ {t('Personal lists interests spell hint')}{' '}
+
+
+
)
diff --git a/src/routes.tsx b/src/routes.tsx
index debaa72f..3c00def8 100644
--- a/src/routes.tsx
+++ b/src/routes.tsx
@@ -14,6 +14,7 @@ const GeneralSettingsPageLazy = lazy(() => import('./pages/secondary/GeneralSett
const MuteListPageLazy = lazy(() => import('./pages/secondary/MuteListPage'))
const BookmarkListPageLazy = lazy(() => import('./pages/secondary/BookmarkListPage'))
const PinListPageLazy = lazy(() => import('./pages/secondary/PinListPage'))
+const InterestListPageLazy = lazy(() => import('./pages/secondary/InterestListPage'))
const NoteListPageLazy = lazy(() => import('./pages/secondary/NoteListPage'))
const NotePageLazy = lazy(() => import('./pages/secondary/NotePage'))
const OthersRelaySettingsPageLazy = lazy(() => import('./pages/secondary/OthersRelaySettingsPage'))
@@ -89,6 +90,7 @@ const ROUTES = [
{ path: '/mutes', element: SR(MuteListPageLazy) },
{ path: '/bookmarks', element: SR(BookmarkListPageLazy) },
{ path: '/pins', element: SR(PinListPageLazy) },
+ { path: '/interests', element: SR(InterestListPageLazy) },
{ path: '/follow-packs', element: SR(FollowPacksRedirectLazy) }
]
diff --git a/src/services/navigation.service.ts b/src/services/navigation.service.ts
index 73ee2fe5..a2840ee4 100644
--- a/src/services/navigation.service.ts
+++ b/src/services/navigation.service.ts
@@ -44,6 +44,7 @@ export type ViewType =
| 'mute'
| 'bookmarks'
| 'pins'
+ | 'interests'
| 'others-relay-settings'
| null
@@ -292,6 +293,7 @@ export class NavigationService {
if (viewType === 'mute') return 'Muted Users'
if (viewType === 'bookmarks') return 'Bookmarks'
if (viewType === 'pins') return 'Pinned notes'
+ if (viewType === 'interests') return 'Interests'
if (viewType === 'others-relay-settings') return 'Relays and Storage Settings'
return 'Page'
}