Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

return to using whitespace (#6109)

authored by

Samuel Newman and committed by
GitHub
ab4e3611 86840f27

+3 -2
+3 -2
src/view/com/notifications/FeedItem.tsx
··· 451 451 <TimeElapsed timestamp={item.notification.indexedAt}> 452 452 {({timeElapsed}) => ( 453 453 <> 454 - <Text style={[a.ml_xs, pal.textLight]}>&middot;</Text> 455 - <Text style={[a.ml_xs, pal.textLight]} title={niceTimestamp}> 454 + {/* make sure there's whitespace around the middot -sfn */} 455 + <Text style={[pal.textLight]}> &middot; </Text> 456 + <Text style={[pal.textLight]} title={niceTimestamp}> 456 457 {timeElapsed} 457 458 </Text> 458 459 </>