Skip to content

Commit 1b96b10

Browse files
committed
Fix the remaining type error
1 parent 8958021 commit 1b96b10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/nextjs/hooks/useFetchContractAbi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ type FetchContractAbiParams = {
1212
};
1313

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

1717
const fetchAbi = async () => {
1818
if (!isAddress(contractAddress)) {

0 commit comments

Comments
 (0)