Skip to content

Commit

Permalink
Fix typecheck error
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-jeremy committed Mar 4, 2025
1 parent aca9ea5 commit 2523140
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,13 @@ function UserDirectoryContent({
if ('error' in loadedUsers) {
dispatch(
addNotification({
type: 'error',
id: 'error',
title: t('Error getting users'),
sticky: true,
message: getUserDirectoryErrors(loadedUsers.error),
notification: {
type: 'error',
id: 'error',
title: t('Error getting users'),
sticky: true,
message: getUserDirectoryErrors(loadedUsers.error),
},
}),
);
setLoading(false);
Expand Down

0 comments on commit 2523140

Please sign in to comment.