summaryrefslogtreecommitdiffstats
path: root/src/chat.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/chat.rs')
-rw-r--r--src/chat.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/chat.rs b/src/chat.rs
index f4202f6..1c92425 100644
--- a/src/chat.rs
+++ b/src/chat.rs
@@ -2,10 +2,13 @@ use std::ops::{Deref, DerefMut};
use filamento::{chat::Chat, user::User};
use jid::BareJID;
-use reactive_stores::ArcStore;
use leptos::prelude::*;
+use reactive_stores::ArcStore;
-use crate::{state_store::{StateListener, StateStore}, user::{ArcMacawUser, MacawUser}};
+use crate::{
+ state_store::{StateListener, StateStore},
+ user::{ArcMacawUser, MacawUser},
+};
#[derive(Clone, Copy)]
pub struct MacawChat {
@@ -81,4 +84,3 @@ impl DerefMut for ArcMacawChat {
&mut self.chat
}
}
-