Skip to content

Commit

Permalink
OCPBUGS-52180: Fix notification drawer close button error
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRealJon committed Feb 28, 2025
1 parent e9d6ead commit 9c5b628
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/public/components/notification-drawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ export const NotificationDrawer: React.FC<NotificationDrawerProps> = ({
const clusterID = getClusterID(useClusterVersion());
const showServiceLevelNotification = useShowServiceLevelNotifications(clusterID);
const [pluginInfoEntries] = useDynamicPluginInfo();
const toggleNotificationDrawer = dispatch(UIActions.notificationDrawerToggleExpanded);
const toggleNotificationDrawer = () => dispatch(UIActions.notificationDrawerToggleExpanded());

React.useEffect(() => {
const poll: NotificationPoll = (url, key: 'notificationAlerts' | 'silences', dataHandler) => {
Expand Down

0 comments on commit 9c5b628

Please sign in to comment.