Skip to content

Commit

Permalink
Resolve CI fail
Browse files Browse the repository at this point in the history
  • Loading branch information
chigichan24 committed Aug 16, 2023
1 parent 56d6df8 commit 1083c47
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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 @@ -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 1083c47

Please sign in to comment.