Skip to content

Commit

Permalink
chore: fix build
Browse files Browse the repository at this point in the history
Signed-off-by: viktoriabakun <viktoriabakun00@gmail.com>
  • Loading branch information
viktoriabakun committed Nov 13, 2024
1 parent ea1128a commit bf6a54a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/shell/src/app/[locale]/uc-dao/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ export default async function Authz() {

await queryClient.prefetchQuery({
queryKey: [chainIdToUse, 'token-pairs'],
queryFn: getErc20TokenPairs,
queryFn: () => {
return getErc20TokenPairs();
},
});

await queryClient.prefetchQuery({
Expand Down

0 comments on commit bf6a54a

Please sign in to comment.