We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7770f6 commit 047e9cdCopy full SHA for 047e9cd
components/dashboard/src/org-admin/MaintenanceNotificationBanner.tsx
@@ -14,8 +14,8 @@ export const MaintenanceNotificationBanner: FC = () => {
14
const { isNotificationEnabled, notificationMessage } = useMaintenanceNotification();
15
const { isMaintenanceMode } = useMaintenanceMode();
16
17
- // As per requirement R4.5, if both maintenance mode and scheduled notification
18
- // are enabled, only show the maintenance mode notification
+ // if both maintenance mode and scheduled notification are enabled,
+ // only show the maintenance mode notification
19
if (isMaintenanceMode || !isNotificationEnabled) {
20
return null;
21
}
0 commit comments