From f5e1de089c9293e1832a67922233db07a2a9e6ea Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Thu, 30 Nov 2023 13:48:24 +0100 Subject: [PATCH] fix(ui): remove weekly report from prefs --- frontend/app/layout/data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/layout/data.ts b/frontend/app/layout/data.ts index 6c63a844e..2100a7326 100644 --- a/frontend/app/layout/data.ts +++ b/frontend/app/layout/data.ts @@ -141,7 +141,7 @@ export const preferences: Category[] = [ }, { label: 'Audit', key: PREFERENCES_MENU.AUDIT, icon: 'list-ul', isAdmin: true, isEnterprise: true }, { label: 'Team', key: PREFERENCES_MENU.TEAM, icon: 'people', isAdmin: true }, - { label: 'Weekly Report', key: PREFERENCES_MENU.NOTIFICATIONS, icon: 'envelope-paper' }, + { label: 'Weekly Report', key: PREFERENCES_MENU.NOTIFICATIONS, icon: 'envelope-paper', hidden: true }, { label: 'Billing', key: PREFERENCES_MENU.BILLING, icon: 'credit-card-2-back', hidden: true } ] }