diff --git a/apps/BosGenaDrop/widget/DropFlow/ArtistPage/theme0.jsx b/apps/BosGenaDrop/widget/DropFlow/ArtistPage/theme0.jsx index 5787df8e..0b265339 100644 --- a/apps/BosGenaDrop/widget/DropFlow/ArtistPage/theme0.jsx +++ b/apps/BosGenaDrop/widget/DropFlow/ArtistPage/theme0.jsx @@ -346,7 +346,7 @@ return ( @{accountId ?? "creativedao.near"}

{/* Truncate the description if it's longer than 6 lines */} - {profile && profile.description.split("\n").length > 6 ? ( + {profile.description && profile.description.split("\n").length > 6 ? ( <> {profile.description .split("\n") diff --git a/apps/BosGenaDrop/widget/DropFlow/ArtistPage/theme1.jsx b/apps/BosGenaDrop/widget/DropFlow/ArtistPage/theme1.jsx index a01738ff..7571f66d 100644 --- a/apps/BosGenaDrop/widget/DropFlow/ArtistPage/theme1.jsx +++ b/apps/BosGenaDrop/widget/DropFlow/ArtistPage/theme1.jsx @@ -443,7 +443,7 @@ return (

About The Artist

{/* Truncate the description if it's longer than 6 lines */} - {profile && profile.description.split("\n").length > 6 ? ( + {profile.description && profile.description.split("\n").length > 6 ? ( <> {profile.description .split("\n") diff --git a/apps/BosGenaDrop/widget/DropFlow/ArtistPage/theme2.jsx b/apps/BosGenaDrop/widget/DropFlow/ArtistPage/theme2.jsx index 9f558bea..ad2b7b7d 100644 --- a/apps/BosGenaDrop/widget/DropFlow/ArtistPage/theme2.jsx +++ b/apps/BosGenaDrop/widget/DropFlow/ArtistPage/theme2.jsx @@ -382,7 +382,8 @@ return ( @{accountId ?? "creativedao.near"}

{/* Truncate the description if it's longer than 6 lines */} - {profile && profile.description.split("\n").length > 6 ? ( + {profile.description && + profile.description.split("\n").length > 6 ? ( <> {profile.description .split("\n") diff --git a/build/BosGenaDrop/src/DropFlow/ArtistPage/theme0.jsx b/build/BosGenaDrop/src/DropFlow/ArtistPage/theme0.jsx index 1439e489..deac526e 100644 --- a/build/BosGenaDrop/src/DropFlow/ArtistPage/theme0.jsx +++ b/build/BosGenaDrop/src/DropFlow/ArtistPage/theme0.jsx @@ -346,7 +346,7 @@ return ( @{accountId ?? "creativedao.near"}

{/* Truncate the description if it's longer than 6 lines */} - {profile && profile.description.split("\n").length > 6 ? ( + {profile.description && profile.description.split("\n").length > 6 ? ( <> {profile.description .split("\n") diff --git a/build/BosGenaDrop/src/DropFlow/ArtistPage/theme1.jsx b/build/BosGenaDrop/src/DropFlow/ArtistPage/theme1.jsx index 7c2e3106..f6d6b98b 100644 --- a/build/BosGenaDrop/src/DropFlow/ArtistPage/theme1.jsx +++ b/build/BosGenaDrop/src/DropFlow/ArtistPage/theme1.jsx @@ -443,7 +443,7 @@ return (

About The Artist

{/* Truncate the description if it's longer than 6 lines */} - {profile && profile.description.split("\n").length > 6 ? ( + {profile.description && profile.description.split("\n").length > 6 ? ( <> {profile.description .split("\n") diff --git a/build/BosGenaDrop/src/DropFlow/ArtistPage/theme2.jsx b/build/BosGenaDrop/src/DropFlow/ArtistPage/theme2.jsx index bb7f45dd..dfb5e48f 100644 --- a/build/BosGenaDrop/src/DropFlow/ArtistPage/theme2.jsx +++ b/build/BosGenaDrop/src/DropFlow/ArtistPage/theme2.jsx @@ -382,7 +382,8 @@ return ( @{accountId ?? "creativedao.near"}

{/* Truncate the description if it's longer than 6 lines */} - {profile && profile.description.split("\n").length > 6 ? ( + {profile.description && + profile.description.split("\n").length > 6 ? ( <> {profile.description .split("\n")