Skip to content

Commit

Permalink
#453 Remove action from store
Browse files Browse the repository at this point in the history
- Remove unused firebase import
  • Loading branch information
warrensearle committed Jun 8, 2020
1 parent d47b0a2 commit 05692f4
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/store/stage/shortlisted.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
// eslint-disable-next-line
import firebase from '@firebase/app';
import { firestore } from '@/firebase';
import { firestoreAction } from 'vuexfire';
import vuexfireSerialize from '@/helpers/vuexfireSerialize';
Expand Down Expand Up @@ -71,7 +69,6 @@ export default {
records: [],
message: null,
selectedItems: [],
action: null,
},
mutations: {
message(state, msg) {
Expand All @@ -80,8 +77,5 @@ export default {
changeSelectedItems(state, items) {
state.selectedItems = items;
},
changeAction(state, action) {
state.action = action;
},
},
};

0 comments on commit 05692f4

Please sign in to comment.