diff --git a/.github/workflows/e2e.config.ts b/.github/workflows/e2e.config.ts index d637ce6b70c..d7478820402 100644 --- a/.github/workflows/e2e.config.ts +++ b/.github/workflows/e2e.config.ts @@ -118,6 +118,7 @@ const nextSuites: TestConfig[] = [ */ const tanstackSuites: TestConfig[] = [ { file: '_community', framework: 'tanstack-start', optional: false, shards: 1 }, + { file: 'auth', framework: 'tanstack-start', optional: false, shards: 1 }, ] export default createE2EConfig([...nextSuites, ...tanstackSuites]) diff --git a/app-tanstack/app/__root.tsx b/app-tanstack/app/__root.tsx index a0a7c33009c..80b75da678d 100644 --- a/app-tanstack/app/__root.tsx +++ b/app-tanstack/app/__root.tsx @@ -1,8 +1,6 @@ import { withPayloadRoot } from '@payloadcms/tanstack-start/client' import { createRootRoute, HeadContent, Scripts } from '@tanstack/react-router' -import { HydrationMarker } from '../components/HydrationMarker/index.js' - export const Route = createRootRoute({ head: () => ({ links: [ @@ -35,7 +33,6 @@ function MarketingRoot({ children }: { children: React.ReactNode }) {
{children} -