Cleanup user list

This commit is contained in:
Tom Moor
2018-05-24 23:07:44 -07:00
parent e2144051df
commit 54e5037aaf
3 changed files with 58 additions and 73 deletions

View File

@@ -6,7 +6,6 @@ import type { User, PaginationParams } from 'types';
class UsersStore {
@observable data: User[] = [];
@observable isLoaded: boolean = false;
@observable isSaving: boolean = false;
@action
@@ -22,7 +21,6 @@ class UsersStore {
} catch (e) {
console.error('Something went wrong');
}
this.isLoaded = false;
};
@action