an independent Bluesky client using Constellation, PDS Queries, and other services reddwarf.app
frontend spa bluesky reddwarf microcosm client app
92
fork

Configure Feed

Select the types of activity you want to include in your feed.

plurals

rimar1337 a12097ac 27e21537

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