Fix missing IDs in target settings for SchemaContracts (#5254)

This commit is contained in:
Kamil Kisiela 2024-07-19 17:57:33 +02:00 committed by GitHub
parent b3854c8da7
commit 379aed4d37
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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