feat: introduce propTypes

This commit is contained in:
kasia.oczkowska
2024-02-29 09:53:07 +00:00
committed by Ali BARIN
parent bfc7d5d0dd
commit 7afdf43872
57 changed files with 1119 additions and 735 deletions

View File

@@ -91,8 +91,8 @@ function TestSubstep(props) {
severity="error"
sx={{ mb: 2, fontWeight: 500, width: '100%' }}
>
{serializeErrors(error.graphQLErrors).map((error) => (
<div>{error.message}</div>
{serializeErrors(error.graphQLErrors).map((error, i) => (
<div key={i}>{error.message}</div>
))}
</Alert>
)}