Fix migration of type "Other"

This commit is contained in:
ajnart
2023-01-08 12:47:06 +09:00
parent 306a3c5f1c
commit 6586914ff5

View File

@@ -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`