From 6586914ff564dda031e5a47607a51aa331e6f1ef Mon Sep 17 00:00:00 2001 From: ajnart Date: Sun, 8 Jan 2023 12:47:06 +0900 Subject: [PATCH] Fix migration of type "Other" --- src/tools/config/migrateConfig.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/tools/config/migrateConfig.ts b/src/tools/config/migrateConfig.ts index 182c31d7d..ce487cf31 100644 --- a/src/tools/config/migrateConfig.ts +++ b/src/tools/config/migrateConfig.ts @@ -398,6 +398,11 @@ const migrateIntegration = (oldService: serviceItem): AppIntegrationType => { }, ], }; + case 'Other': + return { + type: null, + properties: [], + }; default: Consola.warn( `Integration type of service ${oldService.name} could not be mapped to new integration type definition`