Skip to content

Commit

Permalink
Fix: Stop page from jumping from input error message on claim page (#158
Browse files Browse the repository at this point in the history
)
  • Loading branch information
jmealy authored Apr 22, 2024
1 parent ca11dc1 commit a7af8d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Claim/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ const ClaimOverview = (): ReactElement => {
fullWidth
value={amount}
error={!!amountError}
helperText={amountError}
helperText={amountError ?? ' '}
onChange={onChangeAmount}
InputProps={{
startAdornment: (
Expand Down

0 comments on commit a7af8d1

Please sign in to comment.