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`