Skip to content

Commit

Permalink
fix: roll back move to async from PR 4490 to supress sentry error
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-watters committed Dec 4, 2023
1 parent 1d9fd60 commit 9ec8a0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/components/fees-row/components/custom-fee-field.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ export function CustomFeeField({
height="32px"
name="fee"
disabled={disableFeeSelection}
onChange={async (evt: FormEvent<HTMLInputElement>) => {
await helpers.setValue(evt.currentTarget.value);
onChange={(evt: FormEvent<HTMLInputElement>) => {
void helpers.setValue(evt.currentTarget.value);
// Separating warning check from field validations
// bc we want the user to be able to submit the form
// with the low fee warning present.
Expand Down

0 comments on commit 9ec8a0c

Please sign in to comment.