From 7aeb6e2ef02b2f3e0d4dc3e6142a1bed06d24b52 Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Thu, 27 Jun 2024 18:32:22 +0200 Subject: [PATCH] fix(ui): enable weekly reports --- frontend/app/layout/data.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/app/layout/data.ts b/frontend/app/layout/data.ts index 812e0e385..6ed58ec6b 100644 --- a/frontend/app/layout/data.ts +++ b/frontend/app/layout/data.ts @@ -137,8 +137,8 @@ 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', hidden: true }, + { label: 'Weekly Report', key: PREFERENCES_MENU.NOTIFICATIONS, icon: 'envelope-paper', hidden: false }, { label: 'Billing', key: PREFERENCES_MENU.BILLING, icon: 'credit-card-2-back', hidden: true } ] } -]; \ No newline at end of file +];