From 1293f5255247502645d1d524d78732e5e0fcd84d Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Mon, 21 Sep 2020 19:18:09 -0700 Subject: [PATCH] lint --- app/stores/DocumentsStore.js | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/app/stores/DocumentsStore.js b/app/stores/DocumentsStore.js index c14b9e180..61ec9e6cf 100644 --- a/app/stores/DocumentsStore.js +++ b/app/stores/DocumentsStore.js @@ -1,15 +1,6 @@ // @flow import invariant from "invariant"; -import { - without, - map, - find, - orderBy, - filter, - compact, - omitBy, - uniq, -} from "lodash"; +import { find, orderBy, filter, compact, omitBy } from "lodash"; import { observable, action, computed, runInAction } from "mobx"; import naturalSort from "shared/utils/naturalSort"; import BaseStore from "stores/BaseStore";