Skip to content

Commit

Permalink
Fix creator links in modals
Browse files Browse the repository at this point in the history
  • Loading branch information
samchuk-vlad committed Dec 1, 2023
1 parent 90a6735 commit e89ad43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/creatorsStaking/Creators/AccountPreview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const AccountPreview = ({ space, spaceId }: AccountPreviewProps) => {

const { name, ownedByAccount, image, email, links, postsCount } = space || {}

const contactInfo = { email, links }
const contactInfo = { email, links: links?.filter(x => x !== 'null') }

const owner = ownedByAccount?.id

Expand Down

0 comments on commit e89ad43

Please sign in to comment.