From f316d6ef7e3f3cd36a8fd89bc715c9137b468fc0 Mon Sep 17 00:00:00 2001 From: BChoudhury-ms Date: Wed, 21 Jan 2026 16:06:56 +0530 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- src/RootComponents/ExplorerContainer.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RootComponents/ExplorerContainer.test.tsx b/src/RootComponents/ExplorerContainer.test.tsx index 855496274..290167899 100644 --- a/src/RootComponents/ExplorerContainer.test.tsx +++ b/src/RootComponents/ExplorerContainer.test.tsx @@ -157,7 +157,7 @@ describe("ExplorerContainer", () => { test("should handle carousel states correctly", () => { const mockUseCarousel = jest.mocked(useCarousel); - mockUseCarousel.mockImplementation((selector: { toString: () => string | string[] }) => { + mockUseCarousel.mockImplementation((selector: { toString: () => string }) => { if (selector.toString().includes("shouldOpen")) { return false; }