浏览代码

Fixed small issue with settings page.

KrisVos130 7 年之前
父节点
当前提交
dbca21e490
共有 1 个文件被更改,包括 1 次插入1 次删除
  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"),
 	},
 }))