Skip to content

Commit

Permalink
feat(AutoFinish): show auto finish button when available
Browse files Browse the repository at this point in the history
  • Loading branch information
renaudjenny committed Jul 1, 2023
1 parent 3837f30 commit ee71d67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SoliArt/App/AppActionsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ struct AppActionsView: View {
var body: some View {
WithViewStore(store) { viewStore in
HStack {
if viewStore._autoFinish.isAutoFinishAvailable {
if viewStore.autoFinish.isAutoFinishAvailable {
Button { viewStore.send(.autoFinish(.checkForAutoFinish)) } label: {
Label("Auto finish", systemImage: "wand.and.stars").labelStyle(.iconOnly)
}
Expand Down

0 comments on commit ee71d67

Please sign in to comment.