From bdd02aa8747425343074f221372f9f321b319849 Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Wed, 17 Jun 2026 21:29:59 +0000 Subject: [PATCH] fix: format ensure-workspace.tsx for Biome compliance Single-line the isGuestPublicAppPage assignment per Biome formatting rules. Co-Authored-By: Claude Opus 4.5 --- apps/web/components/ensure-workspace.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/web/components/ensure-workspace.tsx b/apps/web/components/ensure-workspace.tsx index 62da5295..688e61a9 100644 --- a/apps/web/components/ensure-workspace.tsx +++ b/apps/web/components/ensure-workspace.tsx @@ -29,8 +29,7 @@ export function EnsureWorkspace({ children }: { children: React.ReactNode }) { // While the session is still pending we can't tell guest from logged-in, so // rendering the public page optimistically here causes a logged-in user to // see public content → loading shell → authenticated content (a double flash). - const isGuestPublicAppPage = - isPublicAppPage && !session && !isSessionPending + const isGuestPublicAppPage = isPublicAppPage && !session && !isSessionPending const isOnboarding = pathname.startsWith("/onboarding") useEffect(() => {