Skip to content

Commit 5e47f00

Browse files
committed
prettier
1 parent 3e4e178 commit 5e47f00

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/pages/Settings.tsx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@ import {
2222
} from '@/components/ui/form';
2323
import { Input } from '@/components/ui/input';
2424
import { Label } from '@/components/ui/label';
25-
import { FeeAmountInput, IntegerInput, TokenAmountInput } from '@/components/ui/masked-input';
25+
import {
26+
FeeAmountInput,
27+
IntegerInput,
28+
TokenAmountInput,
29+
} from '@/components/ui/masked-input';
2630
import {
2731
Select,
2832
SelectContent,
@@ -286,7 +290,9 @@ function GlobalSettings() {
286290
description={t`The default fee to use for transactions`}
287291
control={
288292
<FeeAmountInput
289-
onValueChange={(values) => setFee(values.value === '' ? '0' : values.value)}
293+
onValueChange={(values) =>
294+
setFee(values.value === '' ? '0' : values.value)
295+
}
290296
/>
291297
}
292298
/>

0 commit comments

Comments
 (0)