Skip to content

Commit

Permalink
Resolve CI failure
Browse files Browse the repository at this point in the history
  • Loading branch information
chigichan24 committed Aug 16, 2023
1 parent 56d6df8 commit 9e9edbb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ private fun SearchScreen(
is Empty -> EmptySearchResultBody(missedQuery = uiState.searchQuery)
is SearchList -> SearchList(
contentPaddingValues = PaddingValues(
bottom = innerPadding.calculateBottomPadding()
bottom = innerPadding.calculateBottomPadding(),
),
scrollState = scrollState,
bookmarkedTimetableItemIds = uiState.bookmarkedTimetableItemIds,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class SearchScreenViewModel @Inject constructor(
days = searchFilterUiState.selectedDays,
categories = searchFilterUiState.selectedCategories,
searchWord = searchQuery,
)
),
)
if (searchedSessions.isEmpty()) {
SearchScreenUiState.Empty(
Expand All @@ -70,7 +70,7 @@ class SearchScreenViewModel @Inject constructor(
searchQuery = searchQuery,
searchFilterUiState = searchFilterUiState,
sessions = searchedSessions,
bookmarkedTimetableItemIds = sessions.bookmarks
bookmarkedTimetableItemIds = sessions.bookmarks,
)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ fun SearchList(
}
},
onClick = onTimetableItemClick,
onBoomarkClick = onBookmarkIconClick,
onBookmarkClick = onBookmarkIconClick,
)
}
}
Expand Down

0 comments on commit 9e9edbb

Please sign in to comment.