fix: remove unused imports and suppress dead code warning
Some checks failed
Build MIPS Binary / build (push) Failing after 1m11s

- Remove unused leptos::logging, leptos::html, leptos::task::spawn_local from toast.rs
- Remove unused Torrent import from table.rs
- Add #[allow(dead_code)] to modal.rs for unused fields
This commit is contained in:
spinline
2026-02-09 21:30:03 +03:00
parent 4ed3f12d8b
commit 41bd4fcd1b
3 changed files with 2 additions and 4 deletions

View File

@@ -1,7 +1,4 @@
use leptos::prelude::*;
use leptos::logging;
use leptos::html;
use leptos::task::spawn_local;
use shared::NotificationLevel;
// ============================================================================