Skip to content

Commit

Permalink
fix: 테스트 중 논리 오류 발견 후 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jinuemong committed Nov 6, 2024
1 parent 9fc6c9b commit 66c3ac8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import com.happy.friendogly.presentation.ui.club.common.model.clubfilter.ClubFil

class ClubFilterSelector {
private val _currentSelectedFilters: MutableLiveData<List<ClubFilter>> =
MutableLiveData()
MutableLiveData(emptyList())
val currentSelectedFilters: LiveData<List<ClubFilter>> get() = _currentSelectedFilters

fun addClubFilter(filter: ClubFilter) {
Expand Down

0 comments on commit 66c3ac8

Please sign in to comment.