We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40d8d21 commit 7ca8260Copy full SHA for 7ca8260
Core/Sources/SuggestionWidget/SuggestionPanelView.swift
@@ -139,10 +139,10 @@ struct ToolBar: View {
139
Image(systemName: "chevron.left")
140
}.buttonStyle(.plain)
141
142
- if let suggestion = viewModel.suggestion {
143
- Text("\(suggestion.currentSuggestionIndex + 1) / \(suggestion.suggestionCount)")
144
- .monospacedDigit()
145
- }
+ Text(
+ "\(viewModel.suggestion.currentSuggestionIndex + 1) / \(viewModel.suggestion.suggestionCount)"
+ )
+ .monospacedDigit()
146
147
Button(action: {
148
Task {
0 commit comments