aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/Types.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-07-06 01:37:49 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:53 +0300
commit148fd4059fb3d8c8bbe8e347c2975a973b442827 (patch)
tree6d909bf791a5d793f478172195e6eada2889b8ad /vnext/src/components/Types.js
parent7f25b0f261b5a5fc2696054004fb24673375b91b (diff)
Cleanup prop types warnings and debug logging
Diffstat (limited to 'vnext/src/components/Types.js')
-rw-r--r--vnext/src/components/Types.js2
1 files changed, 1 insertions, 1 deletions
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