Skip to content

Commit

Permalink
huh
Browse files Browse the repository at this point in the history
  • Loading branch information
gbj authored Oct 13, 2023
1 parent 9e4325e commit 75fbc7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integrations/axum/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,9 @@ macro_rules! spawn_task {
let pool_handle = get_leptos_pool();
pool_handle.spawn_pinned(move || { $block });
} else {
eprintln!("\n\nIt appears you have set `default-features = false` on `leptos_axum`, \
but are not using the `wasm` feature. Either remove `default-features = false` or, \
if you are running in a JS-hosted WASM server environment, add the `wasm` feature.\n\n");
eprintln!("It appears you have set 'default-features = false' on 'leptos_axum', \
but are not using the 'wasm' feature. Either remove 'default-features = false' or, \
if you are running in a JS-hosted WASM server environment, add the 'wasm' feature.");
spawn_local($block);
}
}
Expand Down

0 comments on commit 75fbc7b

Please sign in to comment.