Skip to content

Commit

Permalink
fix: add notifications to menu
Browse files Browse the repository at this point in the history
  • Loading branch information
YoannNumericite committed Dec 4, 2024
1 parent 6960c23 commit f471680
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions webapp-backoffice/src/layouts/PublicLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,26 +168,26 @@ export default function PublicLayout({ children, light }: PublicLayoutProps) {
/>
Informations personnelles
</MenuItem>
{/*
<MenuItem
className={cx(fr.cx('fr-p-4v'), classes.item)}
onClick={e => {
handleClose(e);
router.push(
`/administration/dashboard/user/${session?.user.id}/notifications`
);
}}
>
<span
className={fr.cx(
'fr-icon-notification-3-line',
'fr-icon--sm',
'fr-mr-1-5v'
)}
/>
Notifications
</MenuItem>
*/}
{
<MenuItem
className={cx(fr.cx('fr-p-4v'), classes.item)}
onClick={e => {
handleClose(e);
router.push(
`/administration/dashboard/user/${session?.user.id}/notifications`
);
}}
>
<span
className={fr.cx(
'fr-icon-notification-3-line',
'fr-icon--sm',
'fr-mr-1-5v'
)}
/>
Notifications
</MenuItem>
}
<MenuItem
className={cx(
fr.cx('fr-pb-2v', 'fr-pt-4v'),
Expand Down

0 comments on commit f471680

Please sign in to comment.