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
same
author
damedotblog
date
1 year ago
(Apr 1, 2025, 11:54 AM -0400)
commit
b4611006
b46110060b2be29dfbc2916c5c65fcc9a008384d
parent
bd2a1185
bd2a1185bc0c0a0cc6b72f866910191d195003a2
+1
-1
1 changed file
Expand all
Collapse all
Unified
Split
app
src
app
feed
page.tsx
+1
-1
app/src/app/feed/page.tsx
Reviewed
···
191
191
</div>
192
192
<div className={styles.content}>
193
193
<span className={styles.emoji}>{entry.emoji}</span>
194
194
-
<span className={styles.text}>{entry.text.length > 60 ? `${entry.text.substring(0, 60)}...` : entry.text}</span>
194
194
+
<span className={styles.text}>{entry.text.length > 59 ? `${entry.text.substring(0, 59)}...` : entry.text}</span>
195
195
</div>
196
196
</div>
197
197
))}