Remove redundant componenets. #11

Merged
LucidKobold merged 1 commits from polish into main 2021-11-27 20:37:26 -05:00
Showing only changes of commit 528d5850fe - Show all commits

View File

@@ -119,8 +119,7 @@ const Header = (): JSX.Element => {
</HStack> </HStack>
{/* Desktop Nav Items and Mobile Menu Button */} {/* Desktop Nav Items and Mobile Menu Button */}
<Box h="auto" w="100%" px={4}> <HStack w="100%" px={4} h={12} alignItems="center" justifyContent="space-between" >
<Flex h={12} alignItems="center" justifyContent="space-between" >
<HStack <HStack
w="100%" w="100%"
h="auto" h="auto"
@@ -164,8 +163,7 @@ const Header = (): JSX.Element => {
/> />
<MobileNav updateOpen={setOpen} /> <MobileNav updateOpen={setOpen} />
</Menu> </Menu>
</Flex> </HStack>
</Box>
</Box> </Box>
); );
}; };