Skip to content

Commit

Permalink
fixed variable usage of modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
DirkBaumeister committed Oct 22, 2024
1 parent 08b01d8 commit 3e260b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,7 @@ fun ReleaseNotesScreen(
verticalArrangement = Arrangement.Top
) {
item {
ReleaseState(
releaseStates,
modifier = Modifier
.fillMaxWidth()
.padding(vertical = 16.dp))
ReleaseState(releaseStates)
}
items(
items = entries,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import androidx.compose.ui.unit.dp
import app.grapheneos.info.R

@Composable
fun ReleaseState(releaseStates: List<Pair<String, String>>, modifier: Modifier = Modifier) {
fun ReleaseState(releaseStates: List<Pair<String, String>>) {

Row(
modifier = Modifier
Expand Down

0 comments on commit 3e260b7

Please sign in to comment.