Skip to content

Commit fca0323

Browse files
committed
fix: update placeholder text in chat components for clarity
- Changed placeholder text in ChatComposerCardView and subtitle in ChatCollectionBackgroundStatusView to be more concise and user-friendly.
1 parent 4c3b467 commit fca0323

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

iosApp/iosApp/ChatUIKit/ChatScreenChromeView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ struct ChatComposerCardView: View {
214214

215215
ZStack(alignment: .topLeading) {
216216
if state.inputText.isEmpty {
217-
Text("Ask OpenCode anything, @ for files, / for commands")
217+
Text("Ask anything...")
218218
.font(.body)
219219
.foregroundStyle(Color(.placeholderText))
220220
.allowsHitTesting(false)

iosApp/iosApp/ChatUIKit/ChatViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1009,7 +1009,7 @@ private final class ChatCollectionBackgroundStatusView: UIView {
10091009
spinner.stopAnimating()
10101010
spinner.isHidden = true
10111011
titleLabel.text = "Start a conversation"
1012-
subtitleLabel.text = "Ask OpenCode anything — or paste a link to discuss."
1012+
subtitleLabel.text = "Ask anything..."
10131013
subtitleLabel.isHidden = false
10141014

10151015
case .hidden:

0 commit comments

Comments
 (0)