Skip to content

Commit

Permalink
chore: fix type build
Browse files Browse the repository at this point in the history
  • Loading branch information
SGiaccobasso committed Dec 24, 2024
1 parent 938f8b4 commit 5ef2d71
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export const RegisteredInterchainTokenCard: FC<Props> = (props) => {
balance={BigInt(balance.tokenBalance)}
isTokenOwner={balance.isTokenOwner}
isTokenPendingOnwer={balance.isTokenPendingOwner}
isTokenMinter={balance.isTokenMinter}
isTokenMinter={balance.isTokenMinter as boolean}
hasPendingOwner={balance.hasPendingOwner}
tokenId={props.tokenId}
/>
Expand Down

0 comments on commit 5ef2d71

Please sign in to comment.