Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[스터디 목록 뷰] 목록에서 스터디 중복으로 보임 #561

Merged
merged 2 commits into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ android {
applicationId "com.created.team201"
minSdk 26
targetSdk 33
versionCode 2000000
versionName "2.0.0"
versionCode 2000100
versionName "2.0.1"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
buildConfigField "String", "TEAM201_POLICY", properties["POLICY"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class StudyListViewModel @Inject constructor(
}
_studySummaries.value = emptyList()
newItems?.addAll(it.toUiModel())
_studySummaries.value = newItems?.toList()
_studySummaries.value = newItems?.toList()?.distinct()
page++
return@launch
}
Expand Down