From 0f2e528339929626e48dc2c2054a58d49c62f5df Mon Sep 17 00:00:00 2001 From: Marcus Martin <60555296+marcmartin-prog@users.noreply.github.com> Date: Fri, 26 Aug 2022 15:22:44 -0500 Subject: [PATCH] Update use-deep-search.ts (#191) Fixed an error where it could not import searchForKeys and searchForValues from utils, because it needed the file extension on it. Ran into a problem with that on a site I was building and fixed it like this. --- .../src/utilities/use-deep-search/use-deep-search.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/svelteui-composables/src/utilities/use-deep-search/use-deep-search.ts b/packages/svelteui-composables/src/utilities/use-deep-search/use-deep-search.ts index b4e099e97..de4f7e931 100644 --- a/packages/svelteui-composables/src/utilities/use-deep-search/use-deep-search.ts +++ b/packages/svelteui-composables/src/utilities/use-deep-search/use-deep-search.ts @@ -1,4 +1,4 @@ -import { searchForKeys, searchForValues } from './utils'; +import { searchForKeys, searchForValues } from './utils.ts'; import type { DeepSearchOptions, Obj } from './types'; const defaultOpts: DeepSearchOptions = {