Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
fix: add N/A when own quantity unknown as fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
hirbod committed Oct 27, 2023
1 parent a2f5343 commit 8148583
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ export const BuyCreatorToken = () => {
<Skeleton width={40} height={16} />
) : (
<Text tw="font-semibold text-gray-700 dark:text-gray-200">
{tokenBalance.data?.toString()}
{tokenBalance.data?.toString() ?? "N/A"}
</Text>
)}
</View>
Expand Down

0 comments on commit 8148583

Please sign in to comment.