Skip to content

Commit

Permalink
remove unneded and confusing trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
matkoniecz committed Dec 29, 2024
1 parent 3ddda2b commit 521ef06
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import androidx.compose.ui.unit.Dp
import androidx.compose.ui.unit.dp

/** Padding on the map due to an open quest form */
fun getOpenQuestFormMapPadding(totalWidth: Dp, totalHeight: Dp, ): PaddingValues {
fun getOpenQuestFormMapPadding(totalWidth: Dp, totalHeight: Dp): PaddingValues {
val isLandscape = totalWidth > totalHeight
return PaddingValues.Absolute(
left = if (isLandscape) getMaxQuestFormWidth(totalWidth) else 0.dp,
Expand Down

0 comments on commit 521ef06

Please sign in to comment.