Fix Settings page of a project (#4491)

This commit is contained in:
Kamil Kisiela 2024-04-11 16:18:26 +02:00 committed by GitHub
parent d572401a26
commit 3c374fdeae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View file

@ -1214,7 +1214,9 @@ export class SchemaManager {
),
{
native: true,
external: null,
external: {
enabled: false,
},
contracts: null,
},
);

View file

@ -364,7 +364,7 @@ export interface Orchestrator {
composeAndValidate(
schemas: SchemaObject[],
config: {
external: Project['externalComposition'] | null;
external: Project['externalComposition'];
native: boolean;
contracts: ContractsInputType | null;
},