Skip to content

Commit

Permalink
[iOS] - Change LazyVStack to VStack to see if it helps. (#26047)
Browse files Browse the repository at this point in the history
Change LazyVStack to VStack to see if it helps.
  • Loading branch information
Brandon-T authored Oct 25, 2024
1 parent 9a7a73b commit 2a44507
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ struct AIChatMenuView: View {
}

var body: some View {
LazyVStack(spacing: 0.0) {
VStack(spacing: 0.0) {
Text(Strings.AIChat.defaultModelLanguageSectionTitle)
.font(.caption2.weight(.semibold))
.foregroundStyle(Color(braveSystemName: .textPrimary))
Expand Down

0 comments on commit 2a44507

Please sign in to comment.