diff --git a/Passepartout/App/Views/PaywallView+Purchase.swift b/Passepartout/App/Views/PaywallView+Purchase.swift index ca1e3295..67caeb72 100644 --- a/Passepartout/App/Views/PaywallView+Purchase.swift +++ b/Passepartout/App/Views/PaywallView+Purchase.swift @@ -265,16 +265,13 @@ private struct PurchaseRow: View { let purchaseState: PaywallView.PurchaseView.PurchaseState? var body: some View { - VStack { + VStack(alignment: .leading) { actionButton - .frame(maxWidth: .infinity, alignment: .leading) - .padding(.bottom, 5.0) -// .border(.black, width: 1.0) + .padding(.bottom, 5) extra.map { Text($0) - .frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .topLeading) - .multilineTextAlignment(.leading) + .frame(maxHeight: .infinity) // .xxxThemeTruncation() } }.padding([.top, .bottom])