Skip to content

Commit 2b4f7a0

Browse files
committed
fix #6644
1 parent df074f4 commit 2b4f7a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/src/androidMain/kotlin/de/westnordost/streetcomplete/overlays/cycleway/StreetCyclewayOverlayForm.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,11 @@ class StreetCyclewayOverlayForm : AbstractOverlayForm() {
108108
.filter { sides -> sides.all { it?.isSelectable(countryInfo) != false } }
109109
}
110110

111-
snapshotFlow { bicycleInPedestrianStreet }
111+
snapshotFlow { bicycleInPedestrianStreet.value }
112112
.onEach { checkIsFormComplete() }
113113
.launchIn(lifecycleScope)
114114

115-
snapshotFlow { bicycleBoulevard }
115+
snapshotFlow { bicycleBoulevard.value }
116116
.onEach { checkIsFormComplete() }
117117
.launchIn(lifecycleScope)
118118

0 commit comments

Comments
 (0)