diff --git a/src/components/modals/MemeOnReviewModal.tsx b/src/components/modals/MemeOnReviewModal.tsx index fd546bfe5..536ff2dfb 100644 --- a/src/components/modals/MemeOnReviewModal.tsx +++ b/src/components/modals/MemeOnReviewModal.tsx @@ -24,12 +24,16 @@ export default function MemeOnReviewModal({ const description = remaining > 0 - ? `${tokenomics?.socialActionPrice.createCommentPoints} points have been used. We received your meme! We need at least ${remaining} more memes from you to mark you as a verified creator.` + ? `${ + tokenomics?.socialActionPrice.createCommentPoints + } points have been used. We received your meme! We need at least ${remaining} more meme${ + remaining > 1 ? 's' : '' + } from you to mark you as a verified creator.` : `${ tokenomics?.socialActionPrice.createCommentPoints } points have been used. We received ${ count ?? 0 - } meme from you! Now we need a bit of time to finish review you as a verified creator.` + } memes from you! Now we need a bit of time to finish review you as a verified creator.` return ( diff --git a/src/services/datahub/posts/subscription.tsx b/src/services/datahub/posts/subscription.tsx index 20f876248..320394606 100644 --- a/src/services/datahub/posts/subscription.tsx +++ b/src/services/datahub/posts/subscription.tsx @@ -242,12 +242,16 @@ async function processMessage( const title = 'Under review' const description = remaining > 0 - ? `${tokenomics.socialActionPrice.createCommentPoints} points have been used. We received your meme! We need at least ${remaining} more memes from you to mark you as a verified creator.` + ? `${ + tokenomics.socialActionPrice.createCommentPoints + } points have been used. We received your meme! We need at least ${remaining} more meme${ + remaining > 1 ? 's' : '' + } from you to mark you as a verified creator.` : `${ tokenomics.socialActionPrice.createCommentPoints } points have been used. We received ${ count ?? 0 - } meme from you! Now we need a bit of time to finish review you as a verified creator.` + } memes from you! Now we need a bit of time to finish review you as a verified creator.` toast.custom((t) => (