Explorar el Código

Fixed small issue with settings page.

KrisVos130 hace 7 años
padre
commit
dbca21e490
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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"),
 	},
 }))