alpha
Login
or
Join now
atpota.to
/
flushes.app
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix
author
damedotblog
date
1 year ago
(Mar 15, 2025, 8:09 PM -0400)
commit
111ac05d
111ac05d346f232eaf67d66e9652b5774750ad65
parent
46b97986
46b97986312234b4a2982c8c2c5499959cc7e4c4
+4
-3
3 changed files
Expand all
Collapse all
Unified
Split
app
src
app
api
bluesky
profile
route.ts
page.module.css
stats
stats.module.css
+2
-2
app/src/app/api/bluesky/profile/route.ts
Reviewed
···
187
187
const emojiCounts = new Map<string, number>();
188
188
189
189
// Process entries to count emojis
190
190
-
transformedEntries.forEach(entry => {
190
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
255
-
transformedEntries.forEach(entry => {
255
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
Reviewed
···
474
474
font-size: 1rem;
475
475
cursor: pointer;
476
476
transition: background-color 0.2s;
477
477
-
padding-top: 15px;
477
477
+
padding-top: 10px;
478
478
}
479
479
480
480
.refreshButton:hover {
+1
app/src/app/stats/stats.module.css
Reviewed
···
167
167
font-size: 1rem;
168
168
transition: all 0.2s;
169
169
padding-top: 10px;
170
170
+
line-height: 1.3rem;
170
171
}
171
172
172
173
.homeLink:hover {