Skip to content

Commit

Permalink
IOS-2395 Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ignatovv committed Apr 3, 2024
1 parent 688ee5d commit 929a3a6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import SwiftUI

struct MembershipEmailSheetView: View {
@State var email = ""
@State var subscribeToNewsletter = true
@State var subscribeToNewsletter = false

let action: (String, Bool) async throws -> Void

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,13 @@ struct MembershipTierInfoView: View {
AnytypeText(Loc.whatSIncluded, style: .calloutRegular, color: .Text.secondary)
Spacer.fixedHeight(6)
ForEach(tier.features, id: \.self) { feature in
HStack(spacing: 8) {
Image(asset: .System.textCheckMark)
.frame(width: 16, height: 16)
.foregroundColor(.Text.primary)
HStack(alignment: .top, spacing: 8) {
Image(asset: .System.textCheckMark)
.frame(width: 16, height: 16)
.foregroundColor(.Text.primary)
.padding(.top, 3)
AnytypeText(feature, style: .calloutRegular, color: .Text.primary)
.lineLimit(1)
.lineLimit(2)
}
}
}
Expand Down

0 comments on commit 929a3a6

Please sign in to comment.