diff --git a/common/src/main/kotlin/org/wycliffeassociates/otter/common/domain/model/MarkerPlacementModel.kt b/common/src/main/kotlin/org/wycliffeassociates/otter/common/domain/model/MarkerPlacementModel.kt index 4ff3d90a1d..634785b6d0 100644 --- a/common/src/main/kotlin/org/wycliffeassociates/otter/common/domain/model/MarkerPlacementModel.kt +++ b/common/src/main/kotlin/org/wycliffeassociates/otter/common/domain/model/MarkerPlacementModel.kt @@ -137,8 +137,8 @@ class MarkerPlacementModel( .map { marker -> MarkerItem(marker, false) } val missing = all - .filter { marker -> - placedMarkerItems.any { it.marker.label == marker.label }.not() + .filter { markerItem -> + placedMarkerItems.any { it.marker.formattedLabel == markerItem.marker.formattedLabel }.not() } .toTypedArray()