+10
-3
src/routes/notifications.tsx
+10
-3
src/routes/notifications.tsx
···
442
442
) : (
443
443
<></>
444
444
)}
445
-
{type}
446
-
{/* bad grammar replys */}
447
-
{count > 1 ? "s" : ""} <div className="flex-1" /> {count}
445
+
{type === "like"
446
+
? "likes"
447
+
: type === "reply"
448
+
? "replies"
449
+
: type === "quote"
450
+
? "quotes"
451
+
: type === "repost"
452
+
? "reposts"
453
+
: ""}
454
+
<div className="flex-1" /> {count}
448
455
</Link>
449
456
);
450
457
}