mobile: fix snooze time not rendered properly

This commit is contained in:
Ammar Ahmed
2024-12-10 12:29:01 +05:00
parent 60989359e2
commit 6e369e35bb

View File

@@ -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
}
];