mirror of
https://github.com/graphql-hive/console
synced 2026-05-24 01:28:32 +00:00
Fix missing IDs in target settings for SchemaContracts (#5254)
This commit is contained in:
parent
b3854c8da7
commit
379aed4d37
1 changed files with 5 additions and 1 deletions
|
|
@ -1227,7 +1227,11 @@ function TargetSettingsContent(props: {
|
|||
/>
|
||||
) : null}
|
||||
{props.page === 'schema-contracts' ? (
|
||||
<SchemaContracts organizationId="" projectId="" targetId="" />
|
||||
<SchemaContracts
|
||||
organizationId={props.organizationId}
|
||||
projectId={props.projectId}
|
||||
targetId={props.targetId}
|
||||
/>
|
||||
) : null}
|
||||
</div>
|
||||
) : null}
|
||||
|
|
|
|||
Loading…
Reference in a new issue