We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54923c7 commit c994580Copy full SHA for c994580
1 file changed
packages/yew/src/scheduler.rs
@@ -237,6 +237,13 @@ mod feat_hydration {
237
pub(crate) use feat_hydration::*;
238
239
/// Execute any pending [Runnable]s
240
+#[cfg(any(
241
+ not(target_arch = "wasm32"),
242
+ target_os = "wasi",
243
+ feature = "not_browser_env",
244
+ test,
245
+ feature = "test"
246
+))]
247
pub(crate) fn start_now() {
248
#[tracing::instrument(level = tracing::Level::DEBUG)]
249
fn scheduler_loop() {
0 commit comments