Adrian Wannenmacher пре 2 година
родитељ
комит
75357e974d

+ 1 - 2
packages/router-core/src/history/web_scroll.rs

@@ -26,8 +26,7 @@ pub(crate) fn update_history(window: &Window, history: &History) {
     }
 }
 
-pub(crate) fn update_scroll(window: &Window, history: &History) -> AnimationFrame
-{
+pub(crate) fn update_scroll(window: &Window, history: &History) -> AnimationFrame {
     let ScrollPosition { x, y } = history
         .state()
         .map(|state| serde_wasm_bindgen::from_value(state).unwrap_or_default())

+ 1 - 1
packages/router/src/hooks/use_navigate.rs

@@ -1,7 +1,7 @@
 use dioxus::prelude::{ScopeId, ScopeState};
 use dioxus_router_core::Navigator;
 
-use crate::{RouterError, utils::use_router_internal::use_router_internal};
+use crate::{utils::use_router_internal::use_router_internal, RouterError};
 
 /// A hook that allows for programmatic navigation.
 ///