diff --git a/src/components/import-modal/import-modal.jsx b/src/components/import-modal/import-modal.jsx
index 1028d5ddc20f0490a19bfecbf82526869a5a2d27..60b130212281496375a7066f9c87aa4543104336 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 cdcb87c8985b31498c8e5eee61c54067225901fe..33d8fe58b247c28a3760529ecdbaefcd31190599 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)
 };