From c1457cc83f4425bc778dc53549d3380570752a47 Mon Sep 17 00:00:00 2001 From: Ammar Ahmed Date: Tue, 8 Jul 2025 12:20:40 +0500 Subject: [PATCH] mobile: show description in notification body only --- apps/mobile/app/services/notifications.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/mobile/app/services/notifications.ts b/apps/mobile/app/services/notifications.ts index ef48a9b46..e018f44e4 100644 --- a/apps/mobile/app/services/notifications.ts +++ b/apps/mobile/app/services/notifications.ts @@ -348,7 +348,7 @@ async function scheduleNotification( title: title, message: description || "", ongoing: true, - subtitle: description || "", + // subtitle: description || "", actions: [strings.unpin()] }); } @@ -396,7 +396,7 @@ async function scheduleNotification( payload: payload || "", dateModified: reminder.dateModified + "" }, - subtitle: !description ? undefined : description, + // subtitle: !description ? undefined : description, android: { channelId: await getChannelId(priority), smallIcon: "ic_stat_name",