This repository has no description
0

Configure Feed

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

fix

+4 -3
+2 -2
app/src/app/api/bluesky/profile/route.ts
··· 187 187 const emojiCounts = new Map<string, number>(); 188 188 189 189 // Process entries to count emojis 190 - transformedEntries.forEach(entry => { 190 + transformedEntries.forEach((entry: ProfileEntry) => { 191 191 if (entry.emoji) { 192 192 // Default to toilet emoji if empty 193 193 const emoji = entry.emoji.trim() || '🚽'; ··· 252 252 const emojiCounts = new Map<string, number>(); 253 253 254 254 // Process entries to count emojis 255 - transformedEntries.forEach(entry => { 255 + transformedEntries.forEach((entry: ProfileEntry) => { 256 256 if (entry.emoji) { 257 257 // Default to toilet emoji if empty 258 258 const emoji = entry.emoji.trim() || '🚽';
+1 -1
app/src/app/page.module.css
··· 474 474 font-size: 1rem; 475 475 cursor: pointer; 476 476 transition: background-color 0.2s; 477 - padding-top: 15px; 477 + padding-top: 10px; 478 478 } 479 479 480 480 .refreshButton:hover {
+1
app/src/app/stats/stats.module.css
··· 167 167 font-size: 1rem; 168 168 transition: all 0.2s; 169 169 padding-top: 10px; 170 + line-height: 1.3rem; 170 171 } 171 172 172 173 .homeLink:hover {