Skip to content

Commit

Permalink
fix: input is blocked when it should not
Browse files Browse the repository at this point in the history
  • Loading branch information
sandoche committed Sep 13, 2024
1 parent 4e27b14 commit 414fb26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/_components/BiddingForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const BiddingForm = ({ evmosToUsdRate, priceError }: { evmosToUsdRate: nu
placeholder="Amount"
value={state.context.bidAmount}
onChange={(e) => send({ type: 'SET_BID_AMOUNT', value: e.target.value })}
disabled={isSubmitDisabled}
disabled={state.matches('submitting') || state.matches('success')}
/>
<Image src="/icons/evmos.svg" alt="EVMOS" width={24} height={24} className="absolute right-3 top-1/2 transform -translate-y-1/2 pointer-events-none" />
</div>
Expand Down

0 comments on commit 414fb26

Please sign in to comment.