From 9fc351ceacc4fff2d9bdff275cf231479e00d446 Mon Sep 17 00:00:00 2001 From: Greg Johnston Date: Mon, 12 Aug 2024 08:09:12 -0400 Subject: [PATCH] chore: remove unused import --- leptos/src/callback.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leptos/src/callback.rs b/leptos/src/callback.rs index 3c1bcca5d..456358cfa 100644 --- a/leptos/src/callback.rs +++ b/leptos/src/callback.rs @@ -42,7 +42,7 @@ //! Use `SyncCallback` if the function is not `Sync` and `Send`. use reactive_graph::owner::{LocalStorage, StoredValue}; -use std::{cell::RefCell, fmt, rc::Rc, sync::Arc}; +use std::{fmt, rc::Rc, sync::Arc}; /// A wrapper trait for calling callbacks. pub trait Callable {