From 7169e44f4e6fa85cecaa7bb786a98c8ee9d1c56b Mon Sep 17 00:00:00 2001 From: spinline Date: Sun, 8 Feb 2026 21:00:32 +0300 Subject: [PATCH] fix: incorrect import of on_click_outside in statusbar.rs --- frontend/src/components/layout/statusbar.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/layout/statusbar.rs b/frontend/src/components/layout/statusbar.rs index d5495a7..55b58a0 100644 --- a/frontend/src/components/layout/statusbar.rs +++ b/frontend/src/components/layout/statusbar.rs @@ -1,5 +1,5 @@ use leptos::*; -use leptos_use::{on_click_outside_with_options, OnClickOutsideOptions}; +use leptos_use::on_click_outside; use leptos_use::storage::use_local_storage; use codee::string::FromToStringCodec; use shared::GlobalLimitRequest;