Skip to content

Commit ab4eff1

Browse files
authored
fix: translate hardcoded 'mins' on payment page (calcom#27998)
1 parent 38b43f7 commit ab4eff1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/web/app/(use-page-wrapper)/payment/[uid]/PaymentPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ const PaymentPage: FC<PaymentPageProps> = (props) => {
124124
<div className="col-span-2 mb-6">
125125
{date.locale(i18n.language ?? "en").format("dddd, DD MMMM YYYY")}
126126
<br />
127-
{date.format(is24h ? "H:mm" : "h:mma")} - {props.eventType.length} mins{" "}
127+
{date.format(is24h ? "H:mm" : "h:mma")} - {props.eventType.length} {t("minute_timeUnit")}{" "}
128128
<span className="text-subtle">({timezone})</span>
129129
</div>
130130
{props.booking.location && (

0 commit comments

Comments
 (0)