Skip to content

Commit

Permalink
Merge pull request #1029 from InseeFr/fix/solve-issues
Browse files Browse the repository at this point in the history
fix: solve issue when creating a sims based on an existing one
  • Loading branch information
PierreVasseur authored Oct 14, 2024
2 parents ef42fd1 + 8c84b07 commit 19f2fd1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ const SimsCreation = ({
const onSiblingSimsChange = () => {
return (value) => {
setLoading(true);
getSiblingSims(value).then((sims) => {
getSiblingSims(value, metadataStructure).then((sims) => {
setLoading(false);
setSims(sims);
});
Expand Down

0 comments on commit 19f2fd1

Please sign in to comment.