Skip to content

Commit

Permalink
Turn off autoComplete for Back to Stellar address input (#339)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sharqiewicz authored Feb 19, 2024
1 parent 692001e commit ce8418f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/bridge/Redeem/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ function Redeem(props: RedeemProps): JSX.Element {
<label className="label flex align-center">
<span className="text-sm">{`Max redeemable: ${nativeToDecimal(
selectedVault?.redeemableTokens?.toString() || 0,
).toFixed(2)}
).toFixed(2)}
${selectedAsset?.code}`}</span>
</label>
<LabelledInputField
Expand All @@ -163,6 +163,7 @@ function Redeem(props: RedeemProps): JSX.Element {
type="text"
style={{ marginTop: 8 }}
className="border-base-400 bg-base-200"
autoComplete="off"
/>
<FeeBox
amountNative={amountNative}
Expand Down

0 comments on commit ce8418f

Please sign in to comment.