diff --git a/packages/start-client-core/src/client/hydrateStart.ts b/packages/start-client-core/src/client/hydrateStart.ts index 8044209ea2b..4377aa4b3bd 100644 --- a/packages/start-client-core/src/client/hydrateStart.ts +++ b/packages/start-client-core/src/client/hydrateStart.ts @@ -1,12 +1,12 @@ import { hydrate } from '@tanstack/router-core/ssr/client' -// eslint-disable-next-line import/no-duplicates -import { startInstance } from '#tanstack-start-entry' -// eslint-disable-next-line import/no-duplicates -import { getRouter } from '#tanstack-router-entry' import { ServerFunctionSerializationAdapter } from './ServerFunctionSerializationAdapter' import type { AnyStartInstanceOptions } from '../createStart' import type { AnyRouter, AnySerializationAdapter } from '@tanstack/router-core' +// eslint-disable-next-line import/no-duplicates,import/order +import { getRouter } from '#tanstack-router-entry' +// eslint-disable-next-line import/no-duplicates,import/order +import { startInstance } from '#tanstack-start-entry' export async function hydrateStart(): Promise { const router = await getRouter()