diff --git a/packages/remix-react/__tests__/hook-types-test.tsx b/packages/remix-react/__tests__/hook-types-test.tsx index b8effef00fb..9c2f6821370 100644 --- a/packages/remix-react/__tests__/hook-types-test.tsx +++ b/packages/remix-react/__tests__/hook-types-test.tsx @@ -6,8 +6,6 @@ function isEqual<A, B>( arg: A extends B ? (B extends A ? true : false) : false ): void {} -// not sure why `eslint` thinks the `T` generic is not used... - type LoaderData<T> = ReturnType<typeof useLoaderData<T>>; describe("useLoaderData", () => {