Skip to content

Commit

Permalink
Remove trailing space from copy (#3293)
Browse files Browse the repository at this point in the history
<!-- Thank you for submitting a Pull Request and helping to improve Home
Assistant. Please complete the following sections to help the processing
and review of your changes. Please do not delete anything from this
template. -->

## Summary
<!-- Provide a brief summary of the changes you have made and most
importantly what they aim to achieve -->

## Screenshots
<!-- If this is a user-facing change not in the frontend, please include
screenshots in light and dark mode. -->

## Link to pull request in Documentation repository
<!-- Pull requests that add, change or remove functionality must have a
corresponding pull request in the Companion App Documentation repository
(https://github.com/home-assistant/companion.home-assistant). Please add
the number of this pull request after the "#" -->
Documentation: home-assistant/companion.home-assistant#

## Any other notes
<!-- If there is any other information of note, like if this Pull
Request is part of a bigger change, please include it here. -->
  • Loading branch information
bgoncal authored Dec 23, 2024
1 parent 5086fad commit be1f397
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 be1f397

Please sign in to comment.