diff --git a/src/routes/notifications.tsx b/src/routes/notifications.tsx index 2c40219..1a2fbf5 100644 --- a/src/routes/notifications.tsx +++ b/src/routes/notifications.tsx @@ -442,9 +442,16 @@ function InteractionsButton({ ) : ( <> )} - {type} - {/* bad grammar replys */} - {count > 1 ? "s" : ""}
{count} + {type === "like" + ? "likes" + : type === "reply" + ? "replies" + : type === "quote" + ? "quotes" + : type === "repost" + ? "reposts" + : ""} +
{count} ); }