Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/remove extra iframe properly #377

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove unused imports and varibles
  • Loading branch information
Mohammed-Mamoun98 committed Dec 4, 2024
commit 90ed536384448366ab0af23d34607e5ef0f8ed81
4 changes: 0 additions & 4 deletions apps/dashboard-for-dapps/src/routes/index.tsx
Original file line number Diff line number Diff line change
@@ -45,7 +45,6 @@ import ascii85 from "ascii85";
import { matchSorter } from "match-sorter";
import { useMemo, useRef, useState } from "react";
import nacl from "tweetnacl";
import { useAccount } from "wagmi";

import GrantsPagination from "@/components/grants-pagination";
import { useIdOS } from "@/idOS.provider";
@@ -69,9 +68,6 @@ function transformBase85Image(src: string) {
}

const useFetchGrants = (page: number) => {
const idOS = useIdOS();
const { address } = useAccount();

return useQuery({
queryKey: ["grants", page],
queryFn: () => mockFetchAccessGrants(page, 5),