fix(push): preserve distinct Android alerts while offline (#20066)

This commit is contained in:
Jinwoo Hong
2026-09-11 13:23:04 -04:00
committed by GitHub
parent 9aa0f7e77d
commit 08a24efaba
8 changed files with 66 additions and 47 deletions
@@ -26,7 +26,8 @@ export const PushNotificationSchema = z
agentState: PushAgentStateSchema.nullable(),
title: z.string().min(1).max(PUSH_LIMITS.titleMaxChars),
body: z.string().max(PUSH_LIMITS.bodyMaxChars),
worktreeId: z.string().min(1).max(2048).optional()
worktreeId: z.string().min(1).max(2048).optional(),
paneKey: z.string().min(1).max(2048).optional()
})
.strict()
.refine(