We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbf26d8 commit 22dc493Copy full SHA for 22dc493
apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/nfts/components/table.tsx
@@ -95,7 +95,7 @@ export const NFTGetAllTable: React.FC<ContractOverviewNFTGetAllProps> = ({
95
Header: "Description",
96
accessor: (row) => row.metadata.description,
97
Cell: (cell: CellProps<NFT, string>) => {
98
- if (typeof cell.value !== "string") {
+ if (cell.value && typeof cell.value !== "string") {
99
return (
100
<UnexpectedValueErrorMessage
101
title="Invalid description"
0 commit comments