Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
starknetdev committed Sep 9, 2024
1 parent d69eefe commit 9e0761e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ui/src/app/components/start/AdventurerListCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ export const AdventurerListCard = ({
const [transferAddress, setTransferAddress] = useState("");
const [validAddress, setValidAddress] = useState<string | false>(false);
const [subdomain, setSubdomain] = useState(".ctrl");
const [resolvedAddresses, setResolvedAddresses] = useState({
const [resolvedAddresses, setResolvedAddresses] = useState<{
ctrl: string | null;
starknetId: string | null;
}>({
ctrl: null,
starknetId: null,
});
Expand Down

0 comments on commit 9e0761e

Please sign in to comment.