This commit is contained in:
Max Goedjen
2026-06-11 12:40:57 -07:00
parent 3ad23b0506
commit a66db7fe2e
12 changed files with 66 additions and 142 deletions

View File

@@ -31,7 +31,7 @@ struct BatchedRequestsView: View {
Spacer()
Button("Review") {
Task {
try await review([pending.element])
try? await review([pending.element])
}
}
}
@@ -42,7 +42,7 @@ struct BatchedRequestsView: View {
Spacer()
Button("Review All") {
Task {
try await review(Set(group.element))
try? await review(Set(group.element))
}
}