Export default in vuex_shared/modal/actions

**Why?**
This prevents erros when using actions in karma test.
This commit is contained in:
Paul Slaughter 2019-01-15 12:01:36 -06:00
parent d9e4e3f796
commit ff1b442801
No known key found for this signature in database
GPG key ID: DF5690803C68282A

View file

@ -15,3 +15,6 @@ export const show = ({ commit }) => {
export const hide = ({ commit }) => {
commit(types.HIDE);
};
// prevent babel-plugin-rewire from generating an invalid default during karma tests
export default () => {};