From 148fd4059fb3d8c8bbe8e347c2975a973b442827 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Fri, 6 Jul 2018 01:37:49 +0300 Subject: Cleanup prop types warnings and debug logging --- vnext/src/components/Post.js | 5 +---- vnext/src/components/Types.js | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) (limited to 'vnext') diff --git a/vnext/src/components/Post.js b/vnext/src/components/Post.js index ff99cc27..7646d740 100644 --- a/vnext/src/components/Post.js +++ b/vnext/src/components/Post.js @@ -16,18 +16,15 @@ export default class Post extends React.Component { this.state = { attach: '', body: params.body || '' - } + }; this.fileinput = React.createRef(); - console.log(props); } postMessage = (template) => { const { attach, body } = template; post(body, attach) .then(response => { - console.log(response); if (response.status === 200) { const msg = response.data.newMessage; - console.log(msg); this.props.history.push(`/${this.props.visitor.uname}/${msg.mid}`); } }).catch(console.log); diff --git a/vnext/src/components/Types.js b/vnext/src/components/Types.js index 6fba9fd3..f7177f6a 100644 --- a/vnext/src/components/Types.js +++ b/vnext/src/components/Types.js @@ -6,7 +6,7 @@ export const UserType = PropTypes.shape({ }); export const MessageType = PropTypes.shape({ - mid: PropTypes.number.isRequired, + mid: PropTypes.number, user: UserType, timestamp: PropTypes.string.isRequired, body: PropTypes.string -- cgit v1.2.3