diff --git a/packages/xo-web/src/xo-app/vm-import/esxi/esxi-import.js b/packages/xo-web/src/xo-app/vm-import/esxi/esxi-import.js
index 2a4403800..71b440af1 100644
--- a/packages/xo-web/src/xo-app/vm-import/esxi/esxi-import.js
+++ b/packages/xo-web/src/xo-app/vm-import/esxi/esxi-import.js
@@ -30,7 +30,6 @@ class EsxiImport extends Component {
hostIp: '',
isConnected: false,
password: '',
- thin: false,
skipSslVerify: false,
stopSource: false,
stopOnError: true,
@@ -65,8 +64,7 @@ class EsxiImport extends Component {
)
_importVms = () => {
- const { concurrency, hostIp, network, password, skipSslVerify, sr, stopSource, stopOnError, thin, user, vms } =
- this.state
+ const { concurrency, hostIp, network, password, skipSslVerify, sr, stopSource, stopOnError, user, vms } = this.state
return importVmsFromEsxi({
concurrency: +concurrency,
host: hostIp,
@@ -76,7 +74,6 @@ class EsxiImport extends Component {
sslVerify: !skipSslVerify,
stopOnError,
stopSource,
- thin,
user,
vms: vms.map(vm => vm.value),
})
@@ -114,7 +111,6 @@ class EsxiImport extends Component {
sr: undefined,
stopSource: false,
stopOnError: true,
- thin: false,
vms: undefined,
})
}
@@ -132,7 +128,6 @@ class EsxiImport extends Component {
sr,
stopSource,
stopOnError,
- thin,
user,
vms,
vmsById,
@@ -248,13 +243,6 @@ class EsxiImport extends Component {
/>
-
- {_('esxiImportThin')}
-
-
- {_('esxiImportThinDescription')}
-
-
{_('esxiImportStopSource')}