a tool for shared writing and social publishing

Fix missing 'of' in Bluesky mentions copy (#265)

Add the missing "of" between "list" and "Bluesky" in the "Show Mentions"
toggle description across both PostSettings and PostOptions components.

Changes:
- components/PostSettings.tsx: "Display a list Bluesky mentions..." → "Display a list of Bluesky mentions..."
- app/lish/[did]/[publication]/dashboard/settings/PostOptions.tsx: Same fix

https://claude.ai/code/session_01UmMsAY9kbwJy4p1nD6sCh8

Co-authored-by: Claude <noreply@anthropic.com>

authored by awarm.space

Claude and committed by
GitHub
42887e83 7451ae3a

+2 -2
+1 -1
app/lish/[did]/[publication]/dashboard/settings/PostOptions.tsx
··· 105 105 <div className="flex flex-col justify-start"> 106 106 <div className="font-bold">Show Mentions</div> 107 107 <div className="text-tertiary text-sm leading-tight"> 108 - Display a list Bluesky mentions about your post 108 + Display a list of Bluesky mentions about your post 109 109 </div> 110 110 </div> 111 111 </Toggle>
+1 -1
components/PostSettings.tsx
··· 74 74 <div className="flex flex-col justify-start"> 75 75 <div className="font-bold">Show Mentions</div> 76 76 <div className="text-tertiary text-sm leading-tight"> 77 - Display a list Bluesky mentions about your post 77 + Display a list of Bluesky mentions about your post 78 78 </div> 79 79 </div> 80 80 </Toggle>