diff --git a/packages/router/__tests__/data-strategy-test.ts b/packages/router/__tests__/data-strategy-test.ts index c965d6321d..6cdff873bc 100644 --- a/packages/router/__tests__/data-strategy-test.ts +++ b/packages/router/__tests__/data-strategy-test.ts @@ -1,6 +1,6 @@ import type { DataStrategyFunction, DataStrategyMatch } from "../utils"; import { json } from "../utils"; -import { cleanup, createDeferred, setup } from "./utils/data-router-setup"; +import { createDeferred, setup } from "./utils/data-router-setup"; import { createFormData, tick } from "./utils/utils"; describe("router dataStrategy", () => { diff --git a/packages/router/__tests__/should-revalidate-test.ts b/packages/router/__tests__/should-revalidate-test.ts index e2895ddf1b..be7622b5a6 100644 --- a/packages/router/__tests__/should-revalidate-test.ts +++ b/packages/router/__tests__/should-revalidate-test.ts @@ -1,5 +1,6 @@ import { createMemoryHistory, createRouter, redirect } from "../index"; -import { ErrorResponseImpl, type ShouldRevalidateFunctionArgs } from "../utils"; +import type { ShouldRevalidateFunctionArgs } from "../utils"; +import { ErrorResponseImpl } from "../utils"; import { urlMatch } from "./utils/custom-matchers"; import { cleanup } from "./utils/data-router-setup"; import { createFormData, tick } from "./utils/utils";