Skip to content

Commit

Permalink
feat(mobile-app): Updated catalog list default compact landscape ui c…
Browse files Browse the repository at this point in the history
…ondition
  • Loading branch information
marlonlom committed Mar 9, 2024
1 parent f5e13c3 commit 19598e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ fun CatalogListContent(
onCatalogItemSelected: (Long) -> Unit,
) {
when {
appState.isLandscape.and(appState.devicePosture == DevicePosture.Normal) -> {
appState.isLandscape.and(appState.devicePosture == DevicePosture.Normal).and(appState.isCompactHeight) -> {
LandscapeCompactCatalogListScreen(
appState = appState,
catalogItemsListState = catalogItemsListState,
Expand Down

0 comments on commit 19598e4

Please sign in to comment.