From b48cd5524e500377b2bf7335899e469acf59f711 Mon Sep 17 00:00:00 2001 From: Michael Zetterberg Date: Tue, 15 Apr 2025 07:17:39 +0200 Subject: [PATCH] fix: intl lint --- .../(live)/(public)/hotelreservation/get-booking/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/get-booking/page.tsx b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/get-booking/page.tsx index a82f4a081..1898d5ba9 100644 --- a/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/get-booking/page.tsx +++ b/apps/scandic-web/app/[lang]/(live)/(public)/hotelreservation/get-booking/page.tsx @@ -17,6 +17,6 @@ export async function generateMetadata() { const intl = await getIntl() return { - title: intl.formatMessage({ id: "Find booking" }), + title: intl.formatMessage({ defaultMessage: "Find booking" }), } }