Skip to content

Commit

Permalink
Fix Other services menu item alignment (#3462)
Browse files Browse the repository at this point in the history
  • Loading branch information
hamza-vd authored Aug 26, 2024
1 parent b55d720 commit d088c4c
Showing 1 changed file with 7 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -192,15 +192,13 @@ fun AppDrawer(

item {
if (navigationConfiguration.bottomSheetRegisters?.registers?.isNotEmpty() == true) {
Column(modifier = modifier.padding(horizontal = 16.dp)) {
OtherPatientsItem(
navigationConfiguration = navigationConfiguration,
onSideMenuClick = onSideMenuClick,
openDrawer = openDrawer,
navController = navController,
)
if (navigationConfiguration.staticMenu.isNotEmpty()) Divider(color = DividerColor)
}
OtherPatientsItem(
navigationConfiguration = navigationConfiguration,
onSideMenuClick = onSideMenuClick,
openDrawer = openDrawer,
navController = navController,
)
if (navigationConfiguration.staticMenu.isNotEmpty()) Divider(color = DividerColor)
}
}

Expand Down

0 comments on commit d088c4c

Please sign in to comment.