Skip to content

Commit

Permalink
mobile: fix trash interval picker text showing NaN
Browse files Browse the repository at this point in the history
  • Loading branch information
ammarahm-ed committed Jan 14, 2025
1 parent 71db854 commit 77a2f86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/mobile/app/screens/settings/picker/pickers.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export const TrashIntervalPicker = createSettingsPicker({
? strings.never()
: item === 1
? strings.reminderRecurringMode.day()
: item + " " + strings.days();
: strings.days(item);
},
getItemKey: (item) => item.toString(),
options: [-1, 1, 7, 30, 365],
Expand Down

0 comments on commit 77a2f86

Please sign in to comment.