diff --git a/striker-ui/components/Header.tsx b/striker-ui/components/Header.tsx index 79d492d2..28786aad 100644 --- a/striker-ui/components/Header.tsx +++ b/striker-ui/components/Header.tsx @@ -48,41 +48,39 @@ const Header = (): JSX.Element => { const toggleDrawer = (): void => setOpen(!open); return ( - <> - - - - - - - {ICONS.map( - (icon): JSX.Element => ( - - - - ), - )} - + + + + - + + {ICONS.map( + (icon): JSX.Element => ( + + + + ), + )} + + - + ); };