feat: v2 rewrite — hexagonal arch, ActivityPub federation, NATS, deployment-ready #1

Merged
GKaszewski merged 334 commits from v2 into master 2026-05-16 09:42:43 +00:00
Showing only changes of commit 71233f069e - Show all commits

View File

@@ -77,7 +77,7 @@ export function ThoughtForm({ replyToId, onSuccess, card = !replyToId }: Thought
<FormControl>
<Textarea
placeholder={replyToId ? "Post your reply..." : "What's on your mind?"}
className={`resize-none ${replyToId ? "bg-white glass-effect glossy-effect bottom shadow-fa-sm" : ""}`}
className={`resize-none ${replyToId ? "bg-white shadow-fa-sm" : ""}`}
{...field}
/>
</FormControl>
@@ -116,7 +116,7 @@ export function ThoughtForm({ replyToId, onSuccess, card = !replyToId }: Thought
/>
)}
{replyToId && (
<Button type="button" variant="ghost" onClick={onSuccess}>
<Button type="button" variant="ghost" onClick={() => onSuccess?.()}>
Cancel
</Button>
)}