|
@@ -22,7 +22,7 @@ export default ([] as PlatformIntegration[]).concat(
|
|
|
[],
|
|
|
...[...platforms.platforms, otherPlatform].map(platform =>
|
|
|
platform.integrations
|
|
|
- .map(i => ({...i, language: platform.id}))
|
|
|
+ .map(i => ({...i, language: platform.id} as PlatformIntegration))
|
|
|
// filter out any tracing platforms; as they're not meant to be used as a platform for
|
|
|
// the project creation flow
|
|
|
.filter(integration => !(tracing as readonly string[]).includes(integration.id))
|