Skip to content

Commit

Permalink
feat: inline
Browse files Browse the repository at this point in the history
  • Loading branch information
HuberTRoy committed Nov 29, 2023
1 parent 0b94965 commit 9ea9f9e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/hooks/useAirdropKyc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const instance = axios.create({

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@
display: flex;
justify-content: space-between;
margin-bottom: 2rem;

:global {
.subql-typography {
display: inline-flex;
}
}
}

.stats {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/swap/SwapForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import {
} from '../../components';
import TransactionModal from '../../components/TransactionModal';
import { STABLE_TOKEN, STABLE_TOKEN_DECIMAL, TOKEN, tokenDecimals, truncFormatEtherStr } from '../../utils';
import styles from './SwapForm.module.css';
import styles from './SwapForm.module.less';

interface Stats {
title: string;
Expand Down

0 comments on commit 9ea9f9e

Please sign in to comment.