Skip to content

Commit 8818442

Browse files
committed
fix: Fixed import params
1 parent 41adeda commit 8818442

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/orchestrators/import.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export class ImportOrchestrator {
4545
args: ImportArgs,
4646
reporter: Reporter
4747
) {
48-
const { typeIds } = args
48+
const typeIds = args.typeIds?.filter(Boolean)
4949
ctx.processStarted(ProcessName.IMPORT)
5050

5151
const initializationResult = await InitializeOrchestrator.run(

0 commit comments

Comments
 (0)