Refactor Alerts
This commit is contained in:
@@ -23,7 +23,7 @@ public struct GroupListView: View {
|
||||
}
|
||||
}
|
||||
.environmentObject(viewModel)
|
||||
.alertBinding($viewModel.alert)
|
||||
.alert($viewModel.alert)
|
||||
.onAppear {
|
||||
viewModel.connect()
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@ public class GroupListViewModel: BaseViewModel {
|
||||
|
||||
private var pendingSelections: [String: String] = [:]
|
||||
|
||||
public override init() {
|
||||
override public init() {
|
||||
super.init()
|
||||
isLoading = true
|
||||
}
|
||||
@@ -89,7 +89,7 @@ public class GroupListViewModel: BaseViewModel {
|
||||
try await LibboxNewStandaloneCommandClient()!.selectOutbound(groupTag, outboundTag: outboundTag)
|
||||
} catch {
|
||||
await MainActor.run {
|
||||
alert = Alert(error)
|
||||
alert = AlertState(error: error)
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -108,7 +108,7 @@ public class GroupListViewModel: BaseViewModel {
|
||||
try await LibboxNewStandaloneCommandClient()!.setGroupExpand(tag, isExpand: isExpand)
|
||||
} catch {
|
||||
await MainActor.run {
|
||||
alert = Alert(error)
|
||||
alert = AlertState(error: error)
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -124,7 +124,7 @@ public class GroupListViewModel: BaseViewModel {
|
||||
try await LibboxNewStandaloneCommandClient()!.urlTest(tag)
|
||||
} catch {
|
||||
await MainActor.run {
|
||||
alert = Alert(error)
|
||||
alert = AlertState(error: error)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user