Skip to content

Commit 7a077f3

Browse files
committed
Remove the flash plugin store correctly
1 parent 0a706d1 commit 7a077f3

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

resources/assets/scripts/app.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import Vue from 'vue';
22
import Vuex from 'vuex';
33
import vuexI18n from 'vuex-i18n';
4-
import { createFlashStore } from 'vuex-flash';
54
import VueRouter from 'vue-router';
65

76
// Helpers
@@ -18,7 +17,7 @@ window.Ziggy = Ziggy;
1817

1918
Vue.use(Vuex);
2019

21-
const store = new Vuex.Store({ plugins: [createFlashStore()] });
20+
const store = new Vuex.Store();
2221
const route = require('./../../../vendor/tightenco/ziggy/src/js/route').default;
2322

2423
Vue.config.productionTip = false;

resources/lang/en/auth.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
'forgot_password' => [
99
'label' => 'Forgot Password?',
10-
'label_help' => 'Enter your account email address to recive instructions on resetting your password.',
10+
'label_help' => 'Enter your account email address to receive instructions on resetting your password.',
1111
'button' => 'Recover Account',
1212
],
1313

0 commit comments

Comments
 (0)