Skip to content

Commit

Permalink
fix: show only if amount is present
Browse files Browse the repository at this point in the history
  • Loading branch information
chybisov committed Jul 6, 2022
1 parent 6c2d946 commit fa5c590
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const FormPriceHelperText: React.FC<
height={16}
sx={{ borderRadius: 0.25 }}
/>
) : token ? (
) : token?.amount ? (
<Typography
fontWeight={400}
fontSize={12}
Expand Down

0 comments on commit fa5c590

Please sign in to comment.