Description
CommentSection.tsx supports adding comments but has no @mention or notification-on-mention capability — a mentioned recipient has no way to know they were tagged. This issue adds @mention parsing and notification integration.
Technical Context
Involves src/components/CommentSection.tsx and src/lib/notifications.ts. Parse @G... (Stellar address) mentions in comment text, rendering them as styled chips; on submit, trigger a notification (via existing notifications.ts mechanism) to each mentioned address.
Acceptance Criteria
Description
CommentSection.tsxsupports adding comments but has no @mention or notification-on-mention capability — a mentioned recipient has no way to know they were tagged. This issue adds @mention parsing and notification integration.Technical Context
Involves
src/components/CommentSection.tsxandsrc/lib/notifications.ts. Parse@G...(Stellar address) mentions in comment text, rendering them as styled chips; on submit, trigger a notification (via existingnotifications.tsmechanism) to each mentioned address.Acceptance Criteria
@G...patterns in comment text render as distinct styled inline chips, not plain text@patterns (not valid Stellar addresses) render as plain text, not broken chips