Skip to content

Commit

Permalink
Merge pull request #14809 from TheRealJon/OCPBUGS-52180
Browse files Browse the repository at this point in the history
OCPBUGS-52180: Fix notification drawer close button error
  • Loading branch information
openshift-merge-bot[bot] authored Mar 2, 2025
2 parents d38eba1 + 9c5b628 commit 84fa3ce
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 84fa3ce

Please sign in to comment.