Added collections support

This commit is contained in:
2023-08-08 10:50:04 -06:00
parent 43e35da49f
commit ff6e392af1
6 changed files with 565 additions and 36 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ impl App {
}
}
pub async fn dispatch(&mut self, action: NetworkEvent) {
pub async fn dispatch_network_event(&mut self, action: NetworkEvent) {
if let Some(network_tx) = &self.network_tx {
if let Err(e) = network_tx.send(action).await {
self.is_loading = false;