Skip to content

Commit

Permalink
Remove trailing space from copy
Browse files Browse the repository at this point in the history
  • Loading branch information
bgoncal committed Dec 23, 2024
1 parent 5086fad commit 219f7e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 219f7e2

Please sign in to comment.