Skip to content

Commit 2274bef

Browse files
committed
fix: Use new VerticalSpacer
1 parent 596e10d commit 2274bef

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

app/src/main/java/to/bitkit/ui/settings/AdvancedSettingsScreen.kt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
package to.bitkit.ui.settings
22

33
import androidx.compose.foundation.layout.Column
4-
import androidx.compose.foundation.layout.Spacer
54
import androidx.compose.foundation.layout.fillMaxSize
6-
import androidx.compose.foundation.layout.height
75
import androidx.compose.foundation.layout.padding
86
import androidx.compose.foundation.rememberScrollState
97
import androidx.compose.foundation.verticalScroll
@@ -24,6 +22,7 @@ import to.bitkit.R
2422
import to.bitkit.models.addressTypeInfo
2523
import to.bitkit.models.networkUiText
2624
import to.bitkit.ui.Routes
25+
import to.bitkit.ui.components.VerticalSpacer
2726
import to.bitkit.ui.components.settings.SectionHeader
2827
import to.bitkit.ui.components.settings.SettingsButtonRow
2928
import to.bitkit.ui.components.settings.SettingsButtonValue
@@ -241,7 +240,7 @@ private fun Content(
241240
modifier = Modifier.testTag(AdvancedSettingsTestTags.SUGGESTIONS_RESET_BUTTON),
242241
)
243242

244-
Spacer(Modifier.height(32.dp))
243+
VerticalSpacer(32.dp)
245244
}
246245

247246
if (showResetSuggestionsDialog) {

0 commit comments

Comments
 (0)