We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45e5a30 commit 8350266Copy full SHA for 8350266
1 file changed
Core/Sources/SuggestionWidget/SuggestionPanelContent/ChatPanel.swift
@@ -76,7 +76,6 @@ struct ChatPanelMessages: View {
76
}
77
.buttonStyle(.plain)
78
.xcodeStyleFrame()
79
- .matchedGeometryEffect(id: "input", in: inputAreaNamespace)
80
.scaleEffect(x: -1, y: 1, anchor: .center)
81
82
@@ -165,6 +164,7 @@ struct ChatPanelInputArea: View {
165
164
.lineLimit(3)
166
.multilineTextAlignment(.leading)
167
.textFieldStyle(.plain)
+ .frame(maxWidth: .infinity)
168
.padding(8)
169
.background(
170
.regularMaterial,
@@ -176,7 +176,6 @@ struct ChatPanelInputArea: View {
176
chat.send(typedMessage)
177
typedMessage = ""
178
179
180
181
Button(action: {
182
if typedMessage.isEmpty { return }
0 commit comments