Skip to content

Commit

Permalink
[FIX/#250] 파라미터 관련 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
arinming committed Sep 15, 2024
1 parent 9c831b5 commit 4b7abff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ fun SearchProcessRoute(
size = 100,
)
viewModel.updateShowSearchResults(true)
viewModel.updateExistSearchResults(state.text)
viewModel.updateExistSearchResults()
},
onSortButtonClick = {
viewModel.updateSheetVisible(true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ class SearchProcessViewModel @Inject constructor(
private val _internSearchResultData = MutableStateFlow<List<SearchResult>>(emptyList())
val internSearchResultData: StateFlow<List<SearchResult>> =
_internSearchResultData.asStateFlow()

fun getSearchList(
keyword: String,
sortBy: Int = 0,
Expand Down

0 comments on commit 4b7abff

Please sign in to comment.