Skip to content

Commit

Permalink
skip bypass for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
pablomendezroyo committed Nov 5, 2024
1 parent 97f2667 commit 979f295
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,7 @@ const InstallDnpView: React.FC<InstallDnpViewProps> = ({ dnp, progressLogs }) =>
}
].filter((option) => option.available);

const disableInstallation =
!isEmpty(progressLogs) || requiresCoreUpdate || requiresDockerUpdate || packagesToBeUninstalled.length > 0;
const disableInstallation = false; // !isEmpty(progressLogs) || requiresCoreUpdate || requiresDockerUpdate || packagesToBeUninstalled.length > 0;

const setupSubPath = "setup";
const permissionsSubPath = "permissions";
Expand Down

0 comments on commit 979f295

Please sign in to comment.