From 967eda7def2cb543850cb1f08ab21ac0809d352d Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Sat, 16 Aug 2025 19:02:49 +0000 Subject: [PATCH] Refactor AuthLayout to wrap Outlet directly in route component Co-authored-by: natemkelley --- apps/web-tss/src/routes/auth.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/apps/web-tss/src/routes/auth.tsx b/apps/web-tss/src/routes/auth.tsx index 0a7eee4cb..879fe61de 100644 --- a/apps/web-tss/src/routes/auth.tsx +++ b/apps/web-tss/src/routes/auth.tsx @@ -12,9 +12,5 @@ export const Route = createFileRoute('/auth')({ { name: 'og:description', content: 'Buster authentication pages' }, ], }), - component: AuthLayout, + component: () => , }); - -function AuthLayout() { - return ; -}