this repo has no description
10
fork

Configure Feed

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

ui(form): drop redundant 'Decentralised social network' subtitle on Bluesky row

The description was redundant next to the Bluesky brand name. Kept
the secondary line for the multi-client case ('Bluesky + N more')
since that's actually informative.

Made-with: Cursor

+11 -6
+11 -6
islands/CreateProfileForm.tsx
··· 810 810 <span class="atmosphere-row-name"> 811 811 {primaryClient?.name ?? svc.name} 812 812 </span> 813 - <span class="atmosphere-row-desc"> 814 - {ids.length > 1 815 - ? `${BSKY_CLIENTS.find((c) => c.id === ids[0])?.name ?? svc.name}` + 816 - ` + ${ids.length - 1} more` 817 - : svc.description} 818 - </span> 813 + {/* Only render the secondary line when there's something 814 + meaningful to show (i.e. extra clients selected). The 815 + service description ("Decentralised social network") is 816 + redundant next to the brand name and was just noise. */} 817 + {ids.length > 1 && ( 818 + <span class="atmosphere-row-desc"> 819 + {`${ 820 + BSKY_CLIENTS.find((c) => c.id === ids[0])?.name ?? svc.name 821 + } + ${ids.length - 1} more`} 822 + </span> 823 + )} 819 824 </div> 820 825 </div> 821 826 <button