diff --git a/client/src/components/modals/CardModals/QuoteEmbed.tsx b/client/src/components/modals/CardModals/QuoteEmbed.tsx index bf50c53..149ce8d 100644 --- a/client/src/components/modals/CardModals/QuoteEmbed.tsx +++ b/client/src/components/modals/CardModals/QuoteEmbed.tsx @@ -50,7 +50,6 @@ const QuoteEmbed = ({
{timeAgo(event.created_at)}
- ยท diff --git a/client/src/components/modals/CardModals/TextModal.tsx b/client/src/components/modals/CardModals/TextModal.tsx index 750875d..081d649 100644 --- a/client/src/components/modals/CardModals/TextModal.tsx +++ b/client/src/components/modals/CardModals/TextModal.tsx @@ -16,7 +16,7 @@ const RichText = ({ text, isExpanded, emojiMap }: { text: string; isExpanded: bo
{line.split(' ').map((word, j) => emojiMap[word] - ? {word} + ? {word} : `${word} ` )}
diff --git a/client/src/components/routes/Home.tsx b/client/src/components/routes/Home.tsx index 862963e..d5b2888 100644 --- a/client/src/components/routes/Home.tsx +++ b/client/src/components/routes/Home.tsx @@ -25,7 +25,7 @@ const Home = () => { .filter((event) => verifyPow(event) >= Number(filterDifficulty) && event.kind !== 0 && - (event.kind !== 1 || !event.tags.some((tag) => tag[0] === "e" || tag[0] === "p")) + (event.kind !== 1 || !event.tags.some((tag) => tag[0] === "e")) ) const postEventsWithReplies = postEvents.map((event) => {