Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove trailing space from copy #3293

Merged
merged 1 commit into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sources/App/Resources/en.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
"assist.button.listening.title" = "Listening...";
"assist.error.pipelines_response" = "Failed to obtain Assist pipelines, please check your pipelines configuration.";
"assist.pipelines_picker.title" = "Assist Pipelines";
"assist.watch.mic_button.title" = "Tap to ";
"assist.watch.mic_button.title" = "Tap to";
"assist.watch.not_reachable.title" = "Assist requires iPhone connectivity. Your iPhone is currently unreachable.";
"assist.watch.volume.title" = "Volume control";
"cancel_label" = "Cancel";
Expand Down
2 changes: 1 addition & 1 deletion Sources/Extensions/Watch/Assist/WatchAssistView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ struct WatchAssistView: View {
@ViewBuilder
private var micButton: some View {
if ![.loading, .recording].contains(viewModel.state), !viewModel.showChatLoader {
HStack(spacing: .zero) {
HStack(spacing: Spaces.one) {
if viewModel.assistService.deviceReachable {
Text(L10n.Assist.Watch.MicButton.title)
Image(systemName: "mic.fill")
Expand Down
Loading