Skip to content

Commit a31677c

Browse files
committed
feat : LiveData postValue -> setValue
1 parent 9a4c33d commit a31677c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

presentation/src/main/java/com/stop/ui/placesearch/PlaceSearchViewModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class PlaceSearchViewModel @Inject constructor(
6363
centerLat,
6464
BuildConfig.TMAP_APP_KEY
6565
).collectLatest {
66-
_nearPlaceList.postValue(it)
66+
_nearPlaceList.value = it
6767
}
6868
} catch (e: Exception) {
6969
setNearPlaceListEmpty()

0 commit comments

Comments
 (0)