Fixes padding of the zap split section on the master note

This commit is contained in:
Vitor Pamplona
2024-06-11 11:20:44 -04:00
parent abc5d0ea2f
commit a6b2671b1c
@@ -644,7 +644,11 @@ fun NoteMaster(
val zapSplits = remember(noteEvent) { noteEvent?.hasZapSplitSetup() ?: false }
if (zapSplits && noteEvent != null) {
Spacer(modifier = DoubleVertSpacer)
DisplayZapSplits(noteEvent, false, accountViewModel, nav)
Row(
modifier = Modifier.padding(horizontal = 12.dp),
) {
DisplayZapSplits(noteEvent, false, accountViewModel, nav)
}
}
ReactionsRow(note, true, editState, accountViewModel, nav)