From 407a7d699155f4e1997f4ef67e51af205c411cb5 Mon Sep 17 00:00:00 2001 From: Roman Drozd Date: Wed, 20 May 2020 16:20:55 +0200 Subject: [PATCH] Set VideoView/netInfo prop as not required --- app/src/components/VideoContainers/VideoView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/components/VideoContainers/VideoView.js b/app/src/components/VideoContainers/VideoView.js index 7bbe6fa..3237a9d 100644 --- a/app/src/components/VideoContainers/VideoView.js +++ b/app/src/components/VideoContainers/VideoView.js @@ -556,7 +556,7 @@ VideoView.propTypes = onChangeDisplayName : PropTypes.func, children : PropTypes.object, classes : PropTypes.object.isRequired, - netInfo : PropTypes.object.isRequired + netInfo : PropTypes.object }; export default withStyles(styles)(VideoView);