Skip to content

Commit

Permalink
Fix condition for skipping bcodb step
Browse files Browse the repository at this point in the history
  • Loading branch information
davelopez committed Sep 16, 2024
1 parent 4f1edac commit d1b072c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ const wizard = useWizard({
exportData.bcoDatabase.table &&
exportData.bcoDatabase.ownerGroup
),
isSkippable: () => exportData.destination !== "bco-database",
isSkippable: () => exportData.destination !== "bco-database" || exportData.exportPluginFormat !== "bco",
},
"export-summary": {
label: "Export",
Expand Down

0 comments on commit d1b072c

Please sign in to comment.