an appview-less Bluesky client using Constellation and PDS Queries reddwarf.app
frontend spa bluesky reddwarf microcosm

plurals

rimar1337 a12097ac 27e21537

Changed files
+10 -3
src
+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 }