소스 검색

Changed to route to the home page instead of about us page when logging in

master
Lene Scholtz 5 년 전
부모
커밋
1e8a2b47f8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      src/components/user/loginPage.vue

+ 1
- 1
src/components/user/loginPage.vue 파일 보기

@@ -134,7 +134,7 @@ export default {
134 134
           if (this.$store.state.authentication.status === 'error') {
135 135
             this.$router.push('/user/login');
136 136
           } else {
137
-            this.$router.push('/about/us');
137
+            this.$router.push('/');
138 138
           }
139 139
         },
140 140
       );

Loading…
취소
저장