Skip to content

Commit

Permalink
make recommended label always visible
Browse files Browse the repository at this point in the history
  • Loading branch information
zielvna committed Sep 24, 2024
1 parent 9bfdd92 commit ba7a6ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export const SelectMainnetRPC: React.FC<ISelectMainnetRpc> = ({
<Box width='100%' display='flex' justifyContent='space-between' alignItems='center'>
<Typography className={classes.name}>{rpcName} </Typography>
<Typography className={classes.recommendedText}>
{RECOMMENDED_RPC_ADDRESS === rpc && activeRPC !== rpc && 'RECOMMENDED'}
{RECOMMENDED_RPC_ADDRESS === rpc && 'RECOMMENDED'}
</Typography>
</Box>
<DotIcon className={classes.dotIcon} />
Expand Down
2 changes: 1 addition & 1 deletion src/components/Modals/SelectMainnetRPC/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const useStyles = makeStyles(() => ({
},
dotIcon: {
width: 12,
marginLeft: 'auto',
marginLeft: 8,
color: colors.invariant.green,
display: 'none'
},
Expand Down

0 comments on commit ba7a6ad

Please sign in to comment.