fix: inconsistent duration labels (#10223)

This commit is contained in:
Mehul
2023-07-18 15:10:28 +01:00
committed by GitHub
parent 9343aee778
commit 8a1023087f
2 changed files with 2 additions and 2 deletions
@@ -234,7 +234,7 @@ export default function CreateEventTypeDialog({
required
min="10"
placeholder="15"
label={t("length")}
label={t("duration")}
className="pr-4"
{...register("length", { valueAsNumber: true })}
addOnSuffix={t("minutes")}
@@ -143,7 +143,7 @@ const DuplicateDialog = () => {
required
min="1"
placeholder="15"
label={t("length")}
label={t("duration")}
{...register("length", { valueAsNumber: true })}
addOnSuffix={t("minutes")}
/>