This repository has no description
0

Configure Feed

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

no one look at this commit

+3 -3
app/public/.DS_Store

This is a binary file and will not be displayed.

+3 -3
app/src/app/dashboard/page.tsx
··· 283 283 value={text} 284 284 onChange={(e) => setText(e.target.value)} 285 285 placeholder="What's happening in the bathroom... (optional)" 286 - maxLength={60} 286 + maxLength={59} 287 287 className={styles.input} 288 288 disabled={isSubmitting} 289 289 /> 290 290 <div className={styles.charCount}> 291 - {text.length}/60 291 + {text.length}/59 292 292 </div> 293 293 </div> 294 294 ··· 351 351 </a> 352 352 <span className={styles.text}> 353 353 {entry.text ? 354 - (entry.text.length > 60 ? `${entry.text.substring(0, 60)}...` : entry.text) : 354 + (entry.text.length > 59 ? `${entry.text.substring(0, 59)}...` : entry.text) : 355 355 'is flushing'} 356 356 </span> 357 357 </div>