Skip to content

Commit

Permalink
chore: Fix administration E2E tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JanCizmar committed Jan 29, 2025
1 parent ffe11e6 commit 57b5026
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ export const TopBarAnnouncementWithIcon: FC<
);
};

export const TopBarAnnouncementWithAlertIcon: FC = ({ children }) => {
export const TopBarAnnouncementWithAlertIcon: FC = ({ children, ...props }) => {
return (
<TopBarAnnouncementWithIcon icon={<AlertTriangle />}>
<TopBarAnnouncementWithIcon icon={<AlertTriangle />} {...props}>
{children}
</TopBarAnnouncementWithIcon>
);
Expand Down

0 comments on commit 57b5026

Please sign in to comment.