Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Commit

Permalink
fix minutes string (calcom#11703)
Browse files Browse the repository at this point in the history
Co-authored-by: CarinaWolli <[email protected]>
  • Loading branch information
CarinaWolli and CarinaWolli authored Oct 5, 2023
1 parent 98c78ba commit d415944
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/web/components/eventtype/EventLimitsTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export const EventLimitsTab = ({ eventType }: Pick<EventTypeSetupProps, "eventTy
value: 0,
},
...[5, 10, 15, 20, 30, 45, 60, 90, 120].map((minutes) => ({
label: `minutes ${t("minutes")}`,
label: `${minutes} ${t("minutes")}`,
value: minutes,
})),
];
Expand Down Expand Up @@ -225,7 +225,7 @@ export const EventLimitsTab = ({ eventType }: Pick<EventTypeSetupProps, "eventTy
value: 0,
},
...[5, 10, 15, 20, 30, 45, 60, 90, 120].map((minutes) => ({
label: `minutes ${t("minutes")}`,
label: `${minutes} ${t("minutes")}`,
value: minutes,
})),
];
Expand Down Expand Up @@ -272,7 +272,7 @@ export const EventLimitsTab = ({ eventType }: Pick<EventTypeSetupProps, "eventTy
value: -1,
},
...[5, 10, 15, 20, 30, 45, 60, 75, 90, 105, 120].map((minutes) => ({
label: `minutes ${t("minutes")}`,
label: `${minutes} ${t("minutes")}`,
value: minutes,
})),
];
Expand Down

0 comments on commit d415944

Please sign in to comment.