Skip to content

Commit

Permalink
format ai hook
Browse files Browse the repository at this point in the history
  • Loading branch information
seveibar committed Oct 5, 2024
1 parent 0340d81 commit 759f351
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hooks/use-account-balance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface AccountBalance {

export const useAccountBalance = () => {
const axios = useAxios()

return useQuery<AccountBalance, Error>(
"accountBalance",
async () => {
Expand All @@ -16,6 +16,6 @@ export const useAccountBalance = () => {
},
{
refetchInterval: 60000, // Refetch every minute
}
},
)
}

0 comments on commit 759f351

Please sign in to comment.