We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e4e178 commit 5e47f00Copy full SHA for 5e47f00
src/pages/Settings.tsx
@@ -22,7 +22,11 @@ import {
22
} from '@/components/ui/form';
23
import { Input } from '@/components/ui/input';
24
import { Label } from '@/components/ui/label';
25
-import { FeeAmountInput, IntegerInput, TokenAmountInput } from '@/components/ui/masked-input';
+import {
26
+ FeeAmountInput,
27
+ IntegerInput,
28
+ TokenAmountInput,
29
+} from '@/components/ui/masked-input';
30
import {
31
Select,
32
SelectContent,
@@ -286,7 +290,9 @@ function GlobalSettings() {
286
290
description={t`The default fee to use for transactions`}
287
291
control={
288
292
<FeeAmountInput
289
- onValueChange={(values) => setFee(values.value === '' ? '0' : values.value)}
293
+ onValueChange={(values) =>
294
+ setFee(values.value === '' ? '0' : values.value)
295
+ }
296
/>
297
}
298
0 commit comments