Skip to content

Commit

Permalink
Remove need for extra empty div
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgall committed Apr 22, 2024
1 parent 805afe1 commit d1b3e2c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/ui/page/Navigation/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Box, Flex, Show } from '@chakra-ui/react';
import { Flex, Show } from '@chakra-ui/react';
import { useFractal } from '../../../../providers/App/AppProvider';
import { NavigationLinks } from './NavigationLinks';

Expand All @@ -12,10 +12,9 @@ function Navigation() {
<Flex
alignItems="center"
direction="column"
justifyContent="space-between"
justifyContent="end"
flexGrow={1}
>
<Box></Box>
<Show above="md">
<NavigationLinks
showDAOLinks={showDAOLinks}
Expand Down

0 comments on commit d1b3e2c

Please sign in to comment.