From 2c0e4dc902a97b5cfeb0059090a0d1e8b091fec0 Mon Sep 17 00:00:00 2001 From: swve Date: Mon, 22 May 2023 18:20:04 +0000 Subject: [PATCH] fix: change homepage title --- front/app/orgs/[orgslug]/(withmenu)/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/app/orgs/[orgslug]/(withmenu)/page.tsx b/front/app/orgs/[orgslug]/(withmenu)/page.tsx index 896dced9..90796503 100644 --- a/front/app/orgs/[orgslug]/(withmenu)/page.tsx +++ b/front/app/orgs/[orgslug]/(withmenu)/page.tsx @@ -24,7 +24,7 @@ export async function generateMetadata( // Get Org context information const org = await getOrganizationContextInfo(params.orgslug, { revalidate: 1800, tags: ['organizations'] }); return { - title: org.name + " — Home", + title: `Home — ${org.name}`, description: org.description, }; }