Skip to content

Commit 9fbd898

Browse files
committed
lint fix
1 parent c116722 commit 9fbd898

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/pages/faucet/index.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ const FaucetPage: FC = () => {
116116

117117
return (
118118
<Overlay h="fit-content">
119-
<Flex justify="space-between" align="center" gap="4" flexWrap="wrap" maxW="512px">
119+
<Flex align="center" justify="space-between" wrap="wrap" gap="4" maxW="512px">
120120
<H4 mb="2">Testnet Assets</H4>
121121

122122
<Span textStyle="label2" color="text.tertiary" alignContent={'center'}>
@@ -135,8 +135,8 @@ const FaucetPage: FC = () => {
135135
w="100%"
136136
/>
137137
</FormProvider>
138-
<Flex align="center" gap="4" justify="space-between" w="100%">
139-
<Flex align="center" gap="4" flexWrap="wrap">
138+
<Flex align="center" justify="space-between" gap="4" w="100%">
139+
<Flex align="center" wrap="wrap" gap="4">
140140
<Button form={formId} isLoading={isBuyingAssets} type="submit">
141141
{price ? `Buy for ${price.stringCurrencyAmount}` : 'Buy Testnet TON'}
142142
</Button>
@@ -148,7 +148,7 @@ const FaucetPage: FC = () => {
148148
)}
149149

150150
{latestPurchase && (
151-
<Box textStyle="label2" color="text.secondary" textAlign="right" ml="auto">
151+
<Box textStyle="label2" ml="auto" color="text.secondary" textAlign="right">
152152
Bought {latestPurchase.amount.stringAmount} testnet TON{' '}
153153
<Link
154154
textStyle="label2"

0 commit comments

Comments
 (0)