From c266f006fc93a14a693e490aed2fd719844f348e Mon Sep 17 00:00:00 2001 From: Lenz Weber-Tronic Date: Tue, 8 Oct 2024 18:13:13 +0200 Subject: [PATCH] remove unused imports --- src/react/hooks/__tests__/useQueryRefHandlers.test.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/react/hooks/__tests__/useQueryRefHandlers.test.tsx b/src/react/hooks/__tests__/useQueryRefHandlers.test.tsx index 0e19ea1ed32..7d70ef165a8 100644 --- a/src/react/hooks/__tests__/useQueryRefHandlers.test.tsx +++ b/src/react/hooks/__tests__/useQueryRefHandlers.test.tsx @@ -1,5 +1,5 @@ import React from "react"; -import { act, render, screen } from "@testing-library/react"; +import { act, screen } from "@testing-library/react"; import { ApolloClient, InMemoryCache, @@ -17,7 +17,6 @@ import { import { PaginatedCaseData, SimpleCaseData, - renderWithClient, setupPaginatedCase, setupSimpleCase, } from "../../../testing/internal";