Fix minor typo (#4734)

This commit is contained in:
David Perez
2025-02-17 14:37:06 -06:00
committed by GitHub
parent be416f87de
commit 359dedc9d7
2 changed files with 4 additions and 4 deletions

View File

@@ -99,7 +99,7 @@ fun BitwardenTopAppBar(
.union(WindowInsets.displayCutout.only(WindowInsetsSides.Horizontal)),
dividerStyle: TopAppBarDividerStyle = TopAppBarDividerStyle.ON_SCROLL,
actions: @Composable RowScope.() -> Unit = {},
minimunHeight: Dp = 48.dp,
minimumHeight: Dp = 48.dp,
) {
var titleTextHasOverflow by remember {
mutableStateOf(false)
@@ -143,7 +143,7 @@ fun BitwardenTopAppBar(
colors = bitwardenTopAppBarColors(),
scrollBehavior = scrollBehavior,
navigationIcon = navigationIconContent,
collapsedHeight = minimunHeight,
collapsedHeight = minimumHeight,
expandedHeight = 96.dp,
title = {
// The height of the component is controlled and will only allow for 1 extra row,
@@ -164,7 +164,7 @@ fun BitwardenTopAppBar(
colors = bitwardenTopAppBarColors(),
scrollBehavior = scrollBehavior,
navigationIcon = navigationIconContent,
expandedHeight = minimunHeight,
expandedHeight = minimumHeight,
title = {
Text(
text = title,

View File

@@ -69,7 +69,7 @@ fun BitwardenModalBottomSheet(
navigationIconContentDescription = stringResource(R.string.close),
),
scrollBehavior = scrollBehavior,
minimunHeight = 64.dp,
minimumHeight = 64.dp,
)
},
modifier = Modifier