Skip to content

Commit 0c082ce

Browse files
ui: fix spacing for network selection on wallet recovery
1 parent 945408b commit 0c082ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/org/bitcoindevkit/devkitwallet/presentation/ui/components/WalletOptionsCard.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ fun NetworkOptionsCard(selectedNetwork: MutableState<Network>) {
124124
isSelected = selectedNetwork.value == it,
125125
onSelect = { selectedNetwork.value = it }
126126
)
127-
if (index == 2) Spacer(modifier = Modifier.padding(bottom = 8.dp))
127+
if (index == 3) Spacer(modifier = Modifier.padding(bottom = 8.dp))
128128
}
129129
}
130130
}

0 commit comments

Comments
 (0)