From 273f3ca260d749cd6b3db94bb1a4ad9b69c9c934 Mon Sep 17 00:00:00 2001 From: Nick Sullivan Date: Thu, 29 Jan 2026 12:43:09 -0600 Subject: [PATCH] chore: remove unused senderName field from reaction type Baileys reaction events don't include push names, so this field was dead interface pollution. (Cursor review) Co-Authored-By: Claude Opus 4.5 --- src/web/inbound/types.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/web/inbound/types.ts b/src/web/inbound/types.ts index 63c03b2b0..eea9905bd 100644 --- a/src/web/inbound/types.ts +++ b/src/web/inbound/types.ts @@ -57,8 +57,6 @@ export type WebInboundReaction = { senderJid?: string; /** E.164 of the person who reacted. */ senderE164?: string; - /** Push name of the person who reacted. */ - senderName?: string; /** Whether the reacted message was sent by us. */ reactedToFromMe?: boolean; timestamp?: number;