Skip to content

Commit d415944

Browse files
CarinaWolliCarinaWolli
and
CarinaWolli
authored
fix minutes string (#11703)
Co-authored-by: CarinaWolli <wollencarina@gmail.com>
1 parent 98c78ba commit d415944

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/web/components/eventtype/EventLimitsTab.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ export const EventLimitsTab = ({ eventType }: Pick<EventTypeSetupProps, "eventTy
189189
value: 0,
190190
},
191191
...[5, 10, 15, 20, 30, 45, 60, 90, 120].map((minutes) => ({
192-
label: `minutes ${t("minutes")}`,
192+
label: `${minutes} ${t("minutes")}`,
193193
value: minutes,
194194
})),
195195
];
@@ -225,7 +225,7 @@ export const EventLimitsTab = ({ eventType }: Pick<EventTypeSetupProps, "eventTy
225225
value: 0,
226226
},
227227
...[5, 10, 15, 20, 30, 45, 60, 90, 120].map((minutes) => ({
228-
label: `minutes ${t("minutes")}`,
228+
label: `${minutes} ${t("minutes")}`,
229229
value: minutes,
230230
})),
231231
];
@@ -272,7 +272,7 @@ export const EventLimitsTab = ({ eventType }: Pick<EventTypeSetupProps, "eventTy
272272
value: -1,
273273
},
274274
...[5, 10, 15, 20, 30, 45, 60, 75, 90, 105, 120].map((minutes) => ({
275-
label: `minutes ${t("minutes")}`,
275+
label: `${minutes} ${t("minutes")}`,
276276
value: minutes,
277277
})),
278278
];

0 commit comments

Comments
 (0)