Skip to content

Commit

Permalink
Add missing import + dep to dep array
Browse files Browse the repository at this point in the history
  • Loading branch information
portdeveloper committed Apr 13, 2024
1 parent 280a9fc commit 7455cef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/nextjs/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import { MetaHeader } from "~~/components/MetaHeader";
import { MiniFooter } from "~~/components/MiniFooter";
import { NetworksDropdown } from "~~/components/NetworksDropdown";
import { AddressInput } from "~~/components/scaffold-eth";
import scaffoldConfig from "~~/scaffold.config";
import { useAbiNinjaState } from "~~/services/store/store";
import { fetchContractABIFromAnyABI, fetchContractABIFromEtherscan, parseAndCorrectJSON } from "~~/utils/abi";
import { getTargetNetworks, notification } from "~~/utils/scaffold-eth";
Expand Down Expand Up @@ -118,8 +119,7 @@ const Home: NextPage = () => {
} else {
setIsAbiAvailable(false);
}
}, [verifiedContractAddress, network, setContractAbi, publicClient]);

}, [verifiedContractAddress, network, setContractAbi, publicClient, setImplementationAddress]);

useEffect(() => {
if (router.pathname === "/") {
Expand Down

0 comments on commit 7455cef

Please sign in to comment.