Skip to content

Commit f2b244d

Browse files
committed
Merge tag '0.8.5' into develop
2 parents 40d8d21 + 6798594 commit f2b244d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Core/Sources/SuggestionWidget/SuggestionPanelView.swift

+4-4
Original file line numberDiff line numberDiff line change
@@ -139,10 +139,10 @@ struct ToolBar: View {
139139
Image(systemName: "chevron.left")
140140
}.buttonStyle(.plain)
141141

142-
if let suggestion = viewModel.suggestion {
143-
Text("\(suggestion.currentSuggestionIndex + 1) / \(suggestion.suggestionCount)")
144-
.monospacedDigit()
145-
}
142+
Text(
143+
"\(viewModel.suggestion.currentSuggestionIndex + 1) / \(viewModel.suggestion.suggestionCount)"
144+
)
145+
.monospacedDigit()
146146

147147
Button(action: {
148148
Task {

Version.xcconfig

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
APP_VERSION = 0.8.3
2-
APP_BUILD = 45
1+
APP_VERSION = 0.8.5
2+
APP_BUILD = 47

0 commit comments

Comments
 (0)