Skip to content

Commit ba86195

Browse files
committed
chore: formatting
1 parent 61d57b5 commit ba86195

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

src/hooks/useFaucetStatus.ts

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,11 @@ export function useFaucetStatus(): FaucetStatus {
5959
const { address: faucetAddress, explorerUrl } = getFaucetConfig(chainId);
6060

6161
// First, read the token address from the faucet contract
62-
const { data: tokenAddress, isLoading: isLoadingToken, isError: isErrorToken } = useReadContract({
62+
const {
63+
data: tokenAddress,
64+
isLoading: isLoadingToken,
65+
isError: isErrorToken,
66+
} = useReadContract({
6367
address: faucetAddress,
6468
abi: FAUCET_ABI,
6569
functionName: "TOKEN",
@@ -68,7 +72,12 @@ export function useFaucetStatus(): FaucetStatus {
6872
},
6973
});
7074

71-
const { data, isLoading: isLoadingContracts, isError: isErrorContracts, refetch } = useReadContracts({
75+
const {
76+
data,
77+
isLoading: isLoadingContracts,
78+
isError: isErrorContracts,
79+
refetch,
80+
} = useReadContracts({
7281
contracts: [
7382
{
7483
address: faucetAddress,

0 commit comments

Comments
 (0)