Skip to content

Commit

Permalink
Update use-deep-search.ts (#191)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
marcmartin-prog authored Aug 26, 2022
1 parent e04a9e8 commit 0f2e528
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { searchForKeys, searchForValues } from './utils';
import { searchForKeys, searchForValues } from './utils.ts';
import type { DeepSearchOptions, Obj } from './types';

const defaultOpts: DeepSearchOptions = {
Expand Down

0 comments on commit 0f2e528

Please sign in to comment.