Skip to content

Commit

Permalink
fix orama import
Browse files Browse the repository at this point in the history
  • Loading branch information
kilbot committed Dec 29, 2023
1 parent 713ebdc commit f000b27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/search-dbs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* There might be other use cases for having locale available during storeDB
* creation?
*/
import { create, insertMultiple, remove, insert, update } from '@orama/orama/dist';
import { create, insertMultiple, remove, insert, update } from '@orama/orama';
import trim from 'lodash/trim';
import { BehaviorSubject } from 'rxjs';

Expand Down
2 changes: 1 addition & 1 deletion src/search-state.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { count, search } from '@orama/orama/dist';
import { count, search } from '@orama/orama';
import defaults from 'lodash/defaults';
import { Subscription, Subject, Observable, BehaviorSubject, from } from 'rxjs';
import { map, distinctUntilChanged, switchMap, tap } from 'rxjs/operators';
Expand Down

0 comments on commit f000b27

Please sign in to comment.