From 95b30c891929bbaa0befccf6e9bac939841ad6a3 Mon Sep 17 00:00:00 2001 From: Sawyer Cutler Date: Thu, 20 Aug 2026 06:46:41 -0700 Subject: [PATCH] Fix app.tsx import formatting from the CL-6372 rebase The toast-consolidation rebase (PR #117) left the routes import unwrapped after resolving a conflict against the /login redirect work; prettier --write wraps it back to the repo's line width. --- apps/web/src/app.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/web/src/app.tsx b/apps/web/src/app.tsx index 107d31aed..aa0521f58 100644 --- a/apps/web/src/app.tsx +++ b/apps/web/src/app.tsx @@ -17,7 +17,12 @@ import { NotFoundPage } from "./pages/not-found-page"; import { OnboardingPage } from "./pages/onboarding-page"; import { ProvisioningErrorPage } from "./pages/provisioning-error-page"; import { createAppQueryClient } from "./query-client"; -import { APP_ROUTES, LOGIN_PATH, matchesRoute, ONBOARDING_PATH } from "./routes"; +import { + APP_ROUTES, + LOGIN_PATH, + matchesRoute, + ONBOARDING_PATH, +} from "./routes"; import type { SessionState, SessionUser } from "./session"; import { AppShell } from "./shell/app-shell"; import { ComposerInsertionProvider } from "./shell/composer-insertion";