diff --git a/src/components/import-modal/import-modal.jsx b/src/components/import-modal/import-modal.jsx index 1028d5ddc20..60b13021228 100644 --- a/src/components/import-modal/import-modal.jsx +++ b/src/components/import-modal/import-modal.jsx @@ -156,6 +156,7 @@ ImportModal.propTypes = { hasValidationError: PropTypes.bool.isRequired, inputValue: PropTypes.string.isRequired, intl: intlShape.isRequired, + isRtl: PropTypes.bool, onCancel: PropTypes.func.isRequired, onChange: PropTypes.func.isRequired, onGoBack: PropTypes.func.isRequired, diff --git a/src/containers/gui.jsx b/src/containers/gui.jsx index cdcb87c8985..33d8fe58b24 100644 --- a/src/containers/gui.jsx +++ b/src/containers/gui.jsx @@ -94,6 +94,7 @@ class GUI extends React.Component { } GUI.propTypes = { + assetHost: PropTypes.string, children: PropTypes.node, fetchingProject: PropTypes.bool, importInfoVisible: PropTypes.bool, @@ -101,6 +102,7 @@ GUI.propTypes = { onSeeCommunity: PropTypes.func, previewInfoVisible: PropTypes.bool, projectData: PropTypes.oneOfType([PropTypes.object, PropTypes.string]), + projectHost: PropTypes.string, vm: PropTypes.instanceOf(VM) };