Skip to content

Commit

Permalink
[refactoring] 불필요 값 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahn-seokjoo committed Sep 18, 2024
1 parent 3da50b6 commit 98efef7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import com.mashup.dorabangs.core.designsystem.component.chips.FeedUiModel

data class ClassificationState(
val chipState: ChipState = ChipState(),
val selectedFolder: String = "전체",
val isLoading: Boolean = false,
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ class ClassificationViewModel @Inject constructor(
reduce {
state.copy(
chipState = state.chipState.copy(currentIndex = idx),
selectedFolder = state.chipState.chipList.getOrNull(idx)?.title ?: "전체",
)
}
}
Expand Down

0 comments on commit 98efef7

Please sign in to comment.