diff --git a/packages/bruno-app/src/components/Notifications/index.js b/packages/bruno-app/src/components/Notifications/index.js index 245538541..ba257bf48 100644 --- a/packages/bruno-app/src/components/Notifications/index.js +++ b/packages/bruno-app/src/components/Notifications/index.js @@ -93,10 +93,12 @@ const Notifications = () => { dispatch(fetchNotifications()); setShowNotificationsModal(true); }} + aria-label="Check all Notifications" > - + 0 ? 'bell' : ''}`} /> @@ -133,8 +135,9 @@ const Notifications = () => { {notifications?.slice(notificationsStartIndex, notificationsEndIndex)?.map((notification) => (
  • {notification?.title}
    @@ -144,8 +147,9 @@ const Notifications = () => {
    } placement="bottom-start">
    { const leftSidebarWidth = useSelector((state) => state.app.leftSidebarWidth); const preferencesOpen = useSelector((state) => state.app.showPreferences); - const [goldenEditonOpen, setGoldenEditonOpen] = useState(false); + const [goldenEditionOpen, setGoldenEditionOpen] = useState(false); const [asideWidth, setAsideWidth] = useState(leftSidebarWidth); const [cookiesOpen, setCookiesOpen] = useState(false); @@ -83,10 +83,43 @@ const Sidebar = () => { return ( +
    - + ); };