From eb5036b96f2c1f6679df60414afc674a367bec04 Mon Sep 17 00:00:00 2001 From: fhanportainer <79428273+fhanportainer@users.noreply.github.com> Date: Wed, 31 Aug 2022 20:32:01 +1200 Subject: [PATCH] fix(docker): removed docker.sock code in docker API [EE-3612] (#7586) --- .../WizardDocker/APITab/APITab.tsx | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) 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 ( - <> - - -
- -
- +
+ +
); }