diff --git a/src/store/authentication.js b/src/store/authentication.js index e29434d..ffbf71c 100644 --- a/src/store/authentication.js +++ b/src/store/authentication.js @@ -1,5 +1,4 @@ import axios from 'axios'; -import createPersistedState from 'vuex-persistedstate'; const state = { isAuthenticated: false, @@ -36,12 +35,6 @@ const getters = { token: (state) => state.token, }; -const plugins = [ - createPersistedState({ - storage: window.localStorage, - }), -] - export default { namespaced: true, state, diff --git a/src/views/authentication/Register.vue b/src/views/authentication/Register.vue index 91fead7..0df9493 100644 --- a/src/views/authentication/Register.vue +++ b/src/views/authentication/Register.vue @@ -1,6 +1,6 @@