From 8be1270c3029b2f3887fd811e2ba349bf026b6b9 Mon Sep 17 00:00:00 2001 From: Darshan Date: Tue, 9 Dec 2025 11:51:31 +0530 Subject: [PATCH 1/2] chore: page title. --- .../organization-[organization]/+layout.svelte | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/routes/(console)/organization-[organization]/+layout.svelte b/src/routes/(console)/organization-[organization]/+layout.svelte index 1013573ac3..209f6dec16 100644 --- a/src/routes/(console)/organization-[organization]/+layout.svelte +++ b/src/routes/(console)/organization-[organization]/+layout.svelte @@ -1,5 +1,5 @@ - Organizations - {resolvedProfile.platform} + {pageTitle} {@render children()} From b260a7a160a8e61961a88dbfe51a8f334b2a28f6 Mon Sep 17 00:00:00 2001 From: Darshan Date: Tue, 9 Dec 2025 11:54:10 +0530 Subject: [PATCH 2/2] lint. --- .../(console)/organization-[organization]/+layout.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/(console)/organization-[organization]/+layout.svelte b/src/routes/(console)/organization-[organization]/+layout.svelte index 209f6dec16..7ea186b231 100644 --- a/src/routes/(console)/organization-[organization]/+layout.svelte +++ b/src/routes/(console)/organization-[organization]/+layout.svelte @@ -45,8 +45,8 @@ const pageTitle = $derived.by(() => { const platform = resolvedProfile.platform; - return resolvedProfile.id === ProfileMode.STUDIO ? platform : `Organizations - ${platform}` - }) + return resolvedProfile.id === ProfileMode.STUDIO ? platform : `Organizations - ${platform}`; + });