diff --git a/.gitignore b/.gitignore index 9c01e7ee..29287e9f 100644 --- a/.gitignore +++ b/.gitignore @@ -33,6 +33,7 @@ yarn-error.log* *.njsproj *.sln +/src/config/app.js /src/config.js /junit.xml diff --git a/src/store/user.js b/src/store/user.js index 02861280..48aecaac 100644 --- a/src/store/user.js +++ b/src/store/user.js @@ -1,6 +1,5 @@ 'use strict' -import router from '../router' import Vue from 'vue' import _ from 'lodash' import { @@ -394,7 +393,7 @@ export default { }, async forwardHome (context) { if (context.rootState.route?.path === '/user/dashboard' && !context.getters.isRtcEngineUiVisible) { - await router.push({ path: '/user/conversations' }) + await this.$router.push({ path: '/user/conversations' }) } }, async getCustomLogo (context) {