+
+
+ Notifications feature is currently disabled. This will be re-enabled in a future update.
+
+
+ );
+
+ /* COMMENTED OUT - Re-enable when notifications feature is working
const { t } = useTranslation();
const {
smtpConfigs,
@@ -128,6 +144,7 @@ const Page: React.FC = () => {
);
+ */
};
export default Page;
diff --git a/view/hooks/use-app-sidebar.ts b/view/hooks/use-app-sidebar.ts
index 51424f42..2a6a9bc0 100644
--- a/view/hooks/use-app-sidebar.ts
+++ b/view/hooks/use-app-sidebar.ts
@@ -61,21 +61,23 @@ const data = {
url: '/settings/general',
resource: 'settings'
},
- {
- title: 'navigation.notifications',
- url: '/settings/notifications',
- resource: 'notification'
- },
+ // TODO: Re-enable notifications when feature is working
+ // {
+ // title: 'navigation.notifications',
+ // url: '/settings/notifications',
+ // resource: 'notification'
+ // },
{
title: 'navigation.team',
url: '/settings/teams',
resource: 'organization'
- },
- {
- title: 'navigation.domains',
- url: '/settings/domains',
- resource: 'domain'
}
+ // TODO: Re-enable domains when feature is required
+ // {
+ // title: 'navigation.domains',
+ // url: '/settings/domains',
+ // resource: 'domain'
+ // }
]
}
]