+ To launch this image, contact your org admin to adjust your launch permissions.
+ Alternatively, launch directly from the cloud provider console.
+ >
+);
+
+const PermissionMissing = ({ image, onClose }) => {
+ return (
+
+
+
+ {missingPermissionTitle}
+
+ {missingPermissionDescription}
+
+
+
+
+
+ );
+};
+
+PermissionMissing.propTypes = {
+ image: imageProps,
+ onClose: PropTypes.func.isRequired,
+};
+
+export default PermissionMissing;