This repository has no description
0

Configure Feed

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

fix

+1 -1
+1 -1
src/app/profile/[handle]/page.tsx
··· 265 265 const formatHour = (hour: number) => { 266 266 const period = hour >= 12 ? 'pm' : 'am'; 267 267 const displayHour = hour === 0 ? 12 : hour > 12 ? hour - 12 : hour; 268 - return `${displayHour}${period}`; 268 + return `${displayHour} ${period}`; 269 269 }; 270 270 271 271 // Most active month