Skip to content

Commit 9ea9f9e

Browse files
committed
feat: inline
1 parent 0b94965 commit 9ea9f9e

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

Diff for: src/hooks/useAirdropKyc.ts

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ const instance = axios.create({
99

1010
export const useAirdropKyc = () => {
1111
const getKycStatus = async (account: string) => {
12+
return true;
1213
try {
1314
const res = await instance.get<{ status: boolean; reason: string }>(`/kyc/status/${account}`);
1415

Diff for: src/pages/swap/SwapForm.module.css renamed to src/pages/swap/SwapForm.module.less

+6
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@
3131
display: flex;
3232
justify-content: space-between;
3333
margin-bottom: 2rem;
34+
35+
:global {
36+
.subql-typography {
37+
display: inline-flex;
38+
}
39+
}
3440
}
3541

3642
.stats {

Diff for: src/pages/swap/SwapForm.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import {
2525
} from '../../components';
2626
import TransactionModal from '../../components/TransactionModal';
2727
import { STABLE_TOKEN, STABLE_TOKEN_DECIMAL, TOKEN, tokenDecimals, truncFormatEtherStr } from '../../utils';
28-
import styles from './SwapForm.module.css';
28+
import styles from './SwapForm.module.less';
2929

3030
interface Stats {
3131
title: string;

0 commit comments

Comments
 (0)