auto find on 404

This commit is contained in:
Jori Lallo
2017-02-09 19:57:35 -08:00
parent dc64682187
commit dc7480218c
4 changed files with 31 additions and 9 deletions

View File

@ -1,6 +1,5 @@
import { observable, action, runInAction } from 'mobx';
import { client } from 'utils/ApiClient';
import { browserHistory } from 'react-router';
class SearchStore {
@observable documents;
@ -33,7 +32,6 @@ class SearchStore {
this.isFetching = false;
}
};
}
export default SearchStore;