🐛 Add missing title

This commit is contained in:
Luke Vella 2025-07-14 11:50:52 +01:00
parent 7a747db0e6
commit 156e84c8b6
No known key found for this signature in database
GPG key ID: 469CAD687F0D784C

View file

@ -33,6 +33,7 @@ import { FormattedDateTime } from "@/features/timezone/client/formatted-date-tim
import { isSelfHosted } from "@/utils/constants";
import { requireUser } from "@/auth/queries";
import { getTranslation } from "@/i18n/server";
import {
SettingsContent,
SettingsSection,
@ -311,3 +312,12 @@ export default async function Page() {
</SettingsContent>
);
}
export async function generateMetadata() {
const { t } = await getTranslation();
return {
title: t("billing", {
defaultValue: "Billing",
}),
};
}