Skip to content

Commit

Permalink
Update useDappList.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljscript committed Aug 2, 2024
1 parent 0867a66 commit 8942937
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const useDappList = (
options?: UseQueryOptions<DappListResponse, Error, DappListResponse, [string, 'dappList', string]>,
) => {
const {manager} = useDappConnector()
return useQuery([manager.walletId, 'dappList', String(manager.network)], {
return useQuery([manager.walletId, 'dappList', manager.network], {
queryFn: () => manager.getDAppList(),
refetchOnMount: false,
refetchInterval: ONE_DAY,
Expand Down

0 comments on commit 8942937

Please sign in to comment.