Skip to content

Commit

Permalink
impl Callable for StoredCallback
Browse files Browse the repository at this point in the history
  • Loading branch information
gbj committed Sep 28, 2023
1 parent d78686f commit 6f6777a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion leptos/src/callback.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,6 @@ impl<In, Out> Fn<(In,)> for Callback<In, Out> {
/// the scope of the parent. Instead, call [`store_value`][leptos_reactive::store_value] inside your component code.
pub type StoredCallback<In, Out> = StoredValue<Callback<In, Out>>;

#[cfg(not(feature = "nightly"))]
impl<F, In, Out> Callable<In, Out> for StoredValue<F>
where
F: Callable<In, Out>,
Expand Down

0 comments on commit 6f6777a

Please sign in to comment.