diff --git a/src/components/login_form/login_form.js b/src/components/login_form/login_form.js
index 827c704c..b55f770f 100644
--- a/src/components/login_form/login_form.js
+++ b/src/components/login_form/login_form.js
@@ -7,7 +7,9 @@ const LoginForm = {
   },
   methods: {
     submit () {
-      this.$store.dispatch('loginUser', this.user)
+      this.$store.dispatch('loginUser', this.user).then(() => {
+        this.$router.push('/main/friends')
+      })
     }
   }
 }
diff --git a/src/modules/users.js b/src/modules/users.js
index 76a26863..3f6864a2 100644
--- a/src/modules/users.js
+++ b/src/modules/users.js
@@ -21,7 +21,7 @@ const users = {
     loginUser (store, userCredentials) {
       const commit = store.commit
       commit('beginLogin')
-      apiService.verifyCredentials(userCredentials)
+      return apiService.verifyCredentials(userCredentials)
         .then((response) => {
           if (response.ok) {
             response.json()