diff --git a/app/react/portainer/environments/wizard/EnvironmentsCreationView/WizardDocker/APITab/APITab.tsx b/app/react/portainer/environments/wizard/EnvironmentsCreationView/WizardDocker/APITab/APITab.tsx index 90834532b..ee50dcd4b 100644 --- a/app/react/portainer/environments/wizard/EnvironmentsCreationView/WizardDocker/APITab/APITab.tsx +++ b/app/react/portainer/environments/wizard/EnvironmentsCreationView/WizardDocker/APITab/APITab.tsx @@ -1,7 +1,6 @@ import { Environment } from '@/portainer/environments/types'; import { APIForm } from './APIForm'; -import { DeploymentScripts } from './DeploymentScripts'; interface Props { onCreate(environment: Environment): void; @@ -9,12 +8,8 @@ interface Props { export function APITab({ onCreate }: Props) { return ( - <> - - -
- -
- +
+ +
); }