tangled
alpha
login
or
join now
whey.party
/
red-dwarf
82
fork
atom
an independent Bluesky client using Constellation, PDS Queries, and other services
reddwarf.app
frontend
spa
bluesky
reddwarf
microcosm
client
app
82
fork
atom
overview
issues
25
pulls
pipelines
plurals
rimar1337
4 months ago
a12097ac
27e21537
+10
-3
1 changed file
expand all
collapse all
unified
split
src
routes
notifications.tsx
+10
-3
src/routes/notifications.tsx
···
442
442
) : (
443
443
<></>
444
444
)}
445
445
-
{type}
446
446
-
{/* bad grammar replys */}
447
447
-
{count > 1 ? "s" : ""} <div className="flex-1" /> {count}
445
445
+
{type === "like"
446
446
+
? "likes"
447
447
+
: type === "reply"
448
448
+
? "replies"
449
449
+
: type === "quote"
450
450
+
? "quotes"
451
451
+
: type === "repost"
452
452
+
? "reposts"
453
453
+
: ""}
454
454
+
<div className="flex-1" /> {count}
448
455
</Link>
449
456
);
450
457
}