From 3215b382722e00c8dcac136a8f4fb98b3c1728f5 Mon Sep 17 00:00:00 2001 From: spinline Date: Mon, 9 Feb 2026 23:48:52 +0300 Subject: [PATCH] fix: add missing spawn_local import --- frontend/src/store.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/store.rs b/frontend/src/store.rs index ae63365..5d80b8e 100644 --- a/frontend/src/store.rs +++ b/frontend/src/store.rs @@ -1,6 +1,7 @@ use futures::StreamExt; use gloo_net::eventsource::futures::EventSource; use leptos::prelude::*; +use leptos::task::spawn_local; use shared::{AppEvent, GlobalStats, NotificationLevel, SystemNotification, Torrent}; use std::collections::HashMap; use serde::{Serialize, Deserialize};