Skip to content

Commit

Permalink
chore: melos fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ibrahimozkn committed Nov 14, 2024
1 parent 46d1000 commit aa2559b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions designer_v2/lib/domain/study.dart
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ extension StudyDuplicateX on Study {
intervention.id = uuid.v4();
}

Map<String, String> oldObservationIdToNew = {};
final Map<String, String> oldObservationIdToNew = {};
for (final observation in copy.observations) {
String newId = uuid.v4();
final String newId = uuid.v4();
oldObservationIdToNew[observation.id] = newId;
observation.id = newId;
}
Expand Down

0 comments on commit aa2559b

Please sign in to comment.