From aa2559bf96817ff4e9ffd5e341c770adefbb9975 Mon Sep 17 00:00:00 2001 From: Ibrahim Ozkan <51259479+ibrahimozkn@users.noreply.github.com> Date: Thu, 14 Nov 2024 17:52:21 +0100 Subject: [PATCH] chore: melos fix --- designer_v2/lib/domain/study.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/designer_v2/lib/domain/study.dart b/designer_v2/lib/domain/study.dart index 1a420dfd2..85bae8042 100644 --- a/designer_v2/lib/domain/study.dart +++ b/designer_v2/lib/domain/study.dart @@ -124,9 +124,9 @@ extension StudyDuplicateX on Study { intervention.id = uuid.v4(); } - Map oldObservationIdToNew = {}; + final Map oldObservationIdToNew = {}; for (final observation in copy.observations) { - String newId = uuid.v4(); + final String newId = uuid.v4(); oldObservationIdToNew[observation.id] = newId; observation.id = newId; }