From 7a077f32814b5e3863da595917d63c5cb41deb54 Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Sat, 26 May 2018 14:59:58 -0700 Subject: [PATCH] Remove the flash plugin store correctly --- resources/assets/scripts/app.js | 3 +-- resources/lang/en/auth.php | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/resources/assets/scripts/app.js b/resources/assets/scripts/app.js index f53781c09..180df2a40 100644 --- a/resources/assets/scripts/app.js +++ b/resources/assets/scripts/app.js @@ -1,7 +1,6 @@ import Vue from 'vue'; import Vuex from 'vuex'; import vuexI18n from 'vuex-i18n'; -import { createFlashStore } from 'vuex-flash'; import VueRouter from 'vue-router'; // Helpers @@ -18,7 +17,7 @@ window.Ziggy = Ziggy; Vue.use(Vuex); -const store = new Vuex.Store({ plugins: [createFlashStore()] }); +const store = new Vuex.Store(); const route = require('./../../../vendor/tightenco/ziggy/src/js/route').default; Vue.config.productionTip = false; diff --git a/resources/lang/en/auth.php b/resources/lang/en/auth.php index 725c9fbc1..2a3a45268 100644 --- a/resources/lang/en/auth.php +++ b/resources/lang/en/auth.php @@ -7,7 +7,7 @@ return [ 'forgot_password' => [ 'label' => 'Forgot Password?', - 'label_help' => 'Enter your account email address to recive instructions on resetting your password.', + 'label_help' => 'Enter your account email address to receive instructions on resetting your password.', 'button' => 'Recover Account', ],