Skip to content

Commit

Permalink
🔧 I forgot to add the Modifier to the arguments, so I added it.
Browse files Browse the repository at this point in the history
  • Loading branch information
Corvus400 committed Sep 6, 2024
1 parent 67cbfaa commit cc810d3
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ data class AboutUiState(
fun AboutScreen(
onAboutItemClick: (AboutItem) -> Unit,
contentPadding: PaddingValues = PaddingValues(),
modifier: Modifier = Modifier,
) {
val uiState = aboutScreenPresenter()
val snackbarHostState = remember { SnackbarHostState() }
Expand All @@ -81,6 +82,7 @@ fun AboutScreen(
snackbarHostState = snackbarHostState,
contentPadding = contentPadding,
onAboutItemClick = onAboutItemClick,
modifier = modifier,
)
}

Expand Down

0 comments on commit cc810d3

Please sign in to comment.