Fix swarm replies and interaction verification

This commit is contained in:
cyph3rasi
2026-03-07 22:18:16 -08:00
parent 1b0b3d8d52
commit 830c062fa1
7 changed files with 186 additions and 39 deletions
+3 -1
View File
@@ -19,7 +19,7 @@ interface NotificationPost {
interface Notification {
id: string;
type: 'follow' | 'like' | 'repost' | 'mention';
type: 'follow' | 'like' | 'repost' | 'mention' | 'reply';
createdAt: string;
readAt: string | null;
actor: NotificationActor | null;
@@ -77,6 +77,8 @@ export default function NotificationsPage() {
return 'reposted your post';
case 'mention':
return 'mentioned you';
case 'reply':
return 'replied to your post';
default:
return 'interacted with you';
}