Skip to content

Commit

Permalink
Merge pull request #839 from invariant-labs/change-order-of-menu-buttons
Browse files Browse the repository at this point in the history
change order of menu buttons
  • Loading branch information
p6te authored Jan 2, 2025
2 parents 17ad85a + 44017cc commit 8fb8e21
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions src/components/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,13 +226,7 @@ export const Header: React.FC<IHeader> = ({
rpcStatus={rpcStatus}
/>
</Box>
<Box sx={{ display: { xs: 'none', md: 'block' } }}>
<SelectChainButton
activeChain={activeChain}
chains={CHAINS}
onSelect={onChainSelect}
/>
</Box>

<SelectNetworkButton
name={typeOfNetwork}
networks={[
Expand All @@ -257,6 +251,13 @@ export const Header: React.FC<IHeader> = ({
]}
onSelect={onNetworkSelect}
/>
<Box sx={{ display: { xs: 'none', md: 'block' } }}>
<SelectChainButton
activeChain={activeChain}
chains={CHAINS}
onSelect={onChainSelect}
/>
</Box>
</Grid>

<Grid>
Expand Down

0 comments on commit 8fb8e21

Please sign in to comment.