You have no {{status}} bookings unexpectedly capitalized (#3021)

Co-authored-by: gitstart <gitstart@users.noreply.github.com>
Co-authored-by: Bailey Pumfleet <pumfleet@hey.com>
Co-authored-by: Peer Richelsen <peeroke@gmail.com>
pull/3008/head^2
GitStart 2022-06-10 12:36:07 +03:00 committed by GitHub
parent b11398f551
commit 65d8b2d45c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -104,9 +104,9 @@ export default function Bookings() {
{query.status === "success" && isEmpty && (
<EmptyScreen
Icon={CalendarIcon}
headline={t("no_status_bookings_yet", { status: t(status) })}
headline={t("no_status_bookings_yet", { status: t(status).toLowerCase() })}
description={t("no_status_bookings_yet_description", {
status: t(status),
status: t(status).toLowerCase(),
description: descriptionByStatus[status],
})}
/>