From 6e369e35bbe685355147e19995ca154fa352f2da Mon Sep 17 00:00:00 2001 From: Ammar Ahmed Date: Tue, 10 Dec 2024 12:29:01 +0500 Subject: [PATCH] mobile: fix snooze time not rendered properly --- .../app/components/sheets/reminder-notify/index.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/mobile/app/components/sheets/reminder-notify/index.tsx b/apps/mobile/app/components/sheets/reminder-notify/index.tsx index 5e071f266..5c0645ce7 100644 --- a/apps/mobile/app/components/sheets/reminder-notify/index.tsx +++ b/apps/mobile/app/components/sheets/reminder-notify/index.tsx @@ -68,19 +68,19 @@ export default function ReminderNotify({ const QuickActions = [ { - title: `5 ${strings.timeShort.minute}`, + title: `5 ${strings.timeShort.minute()}`, time: 5 }, { - title: `15 ${strings.timeShort.minute}`, + title: `15 ${strings.timeShort.minute()}`, time: 15 }, { - title: `30 ${strings.timeShort.minute}`, + title: `30 ${strings.timeShort.minute()}`, time: 30 }, { - title: `1 ${strings.timeShort.hour}`, + title: `1 ${strings.timeShort.hour()}`, time: 60 } ];