Browse Source

Fixed small issue with settings page.

KrisVos130 7 years ago
parent
commit
dbca21e490
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frontend/app/js/views/Auth/Settings/index.jsx

+ 1 - 1
frontend/app/js/views/Auth/Settings/index.jsx

@@ -14,7 +14,7 @@ import io from "io";
 
 @connect(state => ({
 	user: {
-		userId: state.user.get("userId"),
+		userId: state.session.get("userId"),
 	},
 }))