Skip to content

Commit

Permalink
Remove errant comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Smith committed Oct 2, 2024
1 parent 682df42 commit 7d287f6
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@ fun CreateMapBottomSheet(
) {

Column(
modifier = Modifier.padding(vertical = 8.dp), // For spacing top and bottom Composables in this Column
verticalArrangement = Arrangement.spacedBy(8.dp) // For spacing between Composables in this Column
modifier = Modifier.padding(vertical = 8.dp),
verticalArrangement = Arrangement.spacedBy(8.dp)
) {
Text(
text = "Choose map settings:",
Expand Down Expand Up @@ -331,7 +331,6 @@ fun BasemapDropdown(
) {
var expanded by rememberSaveable { mutableStateOf(false) }


ExposedDropdownMenuBox(
modifier = Modifier.fillMaxWidth(),
expanded = expanded,
Expand Down

0 comments on commit 7d287f6

Please sign in to comment.