Skip to content

Commit

Permalink
chore: remove unnecessary assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
Another-DevX committed Jul 1, 2024
1 parent 17b3135 commit 00f616e
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ const {
const { isWalletReady } = useWeb3();
const nftImageSrc = computed(() => NFTData.value?.imageData);
const hasNFT = computed(
() => !!NFTData.value?.imageData && isWalletReady.value
);
const hasNFT = computed(() => !!NFTData.value && isWalletReady.value);
const isAbleToUpgradeNFT = computed(() => NFTData?.value?.isAbleToUpgrade[0]);
Expand Down

0 comments on commit 00f616e

Please sign in to comment.