From 194b77cd98353452be68884b921bd2da98333192 Mon Sep 17 00:00:00 2001 From: Jakub Kasprzyk Date: Tue, 25 Aug 2026 01:01:23 +0200 Subject: [PATCH] chore: remove unused hooks barrel package/src/hooks/index.ts re-exported useCollectedOverlays, but nothing imported the barrel. MapView reaches the hook by path instead, which is the established pattern in this package, and the hook is internal rather than part of the public API, so no exported surface changes. Clears the deslop/unused-file finding reported by react-doctor. --- package/src/hooks/index.ts | 1 - 1 file changed, 1 deletion(-) delete mode 100644 package/src/hooks/index.ts diff --git a/package/src/hooks/index.ts b/package/src/hooks/index.ts deleted file mode 100644 index 68ec806..0000000 --- a/package/src/hooks/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { useCollectedOverlays } from './useCollectedOverlays';