From b26deb4985cc053adb6d5fb1e54e1d09736538d7 Mon Sep 17 00:00:00 2001 From: Kyrylo Shmidt Date: Tue, 6 Feb 2024 18:18:13 +0100 Subject: [PATCH] Fix manual installation --- src/components/InstallationWizard/InstallStep/index.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/InstallationWizard/InstallStep/index.tsx b/src/components/InstallationWizard/InstallStep/index.tsx index 4910ce773..88a55594d 100644 --- a/src/components/InstallationWizard/InstallStep/index.tsx +++ b/src/components/InstallationWizard/InstallStep/index.tsx @@ -554,8 +554,7 @@ export const InstallStep = (props: InstallStepProps) => { const renderContent = () => { if ( - isAutoInstallationFlow || - config.isDigmaEngineInstalled || + (isAutoInstallationFlow || config.isDigmaEngineInstalled) && !isManualInstallationEnabled ) { return renderEngineManager();