We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 40d8d21 + 6798594 commit f2b244dCopy full SHA for f2b244d
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 {
Version.xcconfig
@@ -1,2 +1,2 @@
1
-APP_VERSION = 0.8.3
2
-APP_BUILD = 45
+APP_VERSION = 0.8.5
+APP_BUILD = 47
0 commit comments