refactor(ui): Fix unused import on wasm

This commit is contained in:
Jonas Platte
2025-01-08 21:20:21 +01:00
committed by Damir Jelić
parent d6c64027f6
commit eac5a5eb35
+3 -4
View File
@@ -1,6 +1,6 @@
use std::future::IntoFuture;
use eyeball::{SharedObservable, Subscriber};
use eyeball::SharedObservable;
use matrix_sdk::{attachment::AttachmentConfig, TransmissionProgress};
use matrix_sdk_base::boxed_into_future;
use mime::Mime;
@@ -48,10 +48,9 @@ impl<'a> SendAttachment<'a> {
Self { use_send_queue: true, ..self }
}
/// Get a subscriber to observe the progress of sending the request
/// body.
/// Get a subscriber to observe the progress of sending the request body.
#[cfg(not(target_arch = "wasm32"))]
pub fn subscribe_to_send_progress(&self) -> Subscriber<TransmissionProgress> {
pub fn subscribe_to_send_progress(&self) -> eyeball::Subscriber<TransmissionProgress> {
self.send_progress.subscribe()
}
}