Skip to content

Commit

Permalink
remove warning in release mode
Browse files Browse the repository at this point in the history
  • Loading branch information
gbj committed Feb 9, 2024
1 parent eb9b620 commit 5f9ac5d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions leptos_server/src/action.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
//use crate::{ServerFn, ServerFnError};
#[cfg(debug_assertions)]
use leptos_reactive::console_warn;
use leptos_reactive::{
console_warn, create_rw_signal, is_suppressing_resource_load,
signal_prelude::*, spawn_local, store_value, try_batch, use_context,
ReadSignal, RwSignal, StoredValue,
create_rw_signal, is_suppressing_resource_load, signal_prelude::*,
spawn_local, store_value, try_batch, use_context, ReadSignal, RwSignal,
StoredValue,
};
use server_fn::{error::ServerFnUrlError, ServerFn, ServerFnError};
use std::{cell::Cell, future::Future, pin::Pin, rc::Rc};
Expand Down

0 comments on commit 5f9ac5d

Please sign in to comment.