Skip to content

Commit d24f5e0

Browse files
committed
turned off some unimplemented pages
1 parent 0b6b8a0 commit d24f5e0

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

src/Exceptionless.Web/ClientApp/src/routes/(app)/account/notifications/+page.svelte

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,6 @@
1818
if (client.loading) {
1919
return;
2020
}
21-
22-
// let response = await save(data);
23-
// if (response.ok) {
24-
// // TODO
25-
// } else {
26-
// problem = response.problem;
27-
// }
2821
}
2922
</script>
3023

src/Exceptionless.Web/ClientApp/src/routes/(app)/account/routes.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,21 @@ export const routes: NavigationItem[] = [
2424
group: 'My Account',
2525
href: '/next/account/notifications',
2626
icon: IconNotifications,
27+
show: () => false,
2728
title: 'Notifications'
2829
},
2930
{
3031
group: 'My Account',
3132
href: '/next/account/security',
3233
icon: IconPassword,
34+
show: () => false,
3335
title: 'Password and authentication'
3436
},
3537
{
3638
group: 'My Account',
3739
href: '/next/account/sessions',
3840
icon: IconSessions,
41+
show: () => false,
3942
title: 'Sessions'
4043
},
4144
{

0 commit comments

Comments
 (0)