Skip to content

Commit

Permalink
Fix the remaining type error
Browse files Browse the repository at this point in the history
  • Loading branch information
portdeveloper committed Sep 16, 2024
1 parent 8958021 commit 1b96b10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nextjs/hooks/useFetchContractAbi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ type FetchContractAbiParams = {
};

const useFetchContractAbi = ({ contractAddress, chainId, disabled = false }: FetchContractAbiParams) => {
const [implementationAddress, setImplementationAddress] = useState<string | null>(null);
const [implementationAddress, setImplementationAddress] = useState<Address | null>(null);

const fetchAbi = async () => {
if (!isAddress(contractAddress)) {
Expand Down

0 comments on commit 1b96b10

Please sign in to comment.