aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vnext/src/components/Thread.js2
-rw-r--r--vnext/src/components/UserInfo.js4
2 files changed, 3 insertions, 3 deletions
diff --git a/vnext/src/components/Thread.js b/vnext/src/components/Thread.js
index ba3fcfa9..1563aa66 100644
--- a/vnext/src/components/Thread.js
+++ b/vnext/src/components/Thread.js
@@ -74,7 +74,7 @@ function Comment({ msg, visitor, active, setActive, postComment }) {
Comment.propTypes = {
msg: MessageType.isRequired,
visitor: UserType.isRequired,
- active: PropTypes.bool.isRequired,
+ active: PropTypes.number.isRequired,
setActive: PropTypes.func.isRequired,
postComment: PropTypes.func.isRequired
};
diff --git a/vnext/src/components/UserInfo.js b/vnext/src/components/UserInfo.js
index c190770b..c8565cbf 100644
--- a/vnext/src/components/UserInfo.js
+++ b/vnext/src/components/UserInfo.js
@@ -87,10 +87,10 @@ export function UserLink(props) {
useEffect(() => {
setUser(props.user);
isMounted = true;
- if (!user.uid && !user.uname && user.uri) {
+ if (!user.uid && user.uri) {
fetchUserUri(user.uri).then(response => {
if (isMounted) {
- setUser(response.data);
+ setUser({...response.data, uid: 66666666});
}
});
}