Merge pull request #1274 from Demonthos/fix-navigator

Fix navigator push/replace route
This commit is contained in:
Jonathan Kelley 2023-08-01 10:35:01 -07:00 committed by GitHub
commit 25a2abfa08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -178,7 +178,7 @@ impl RouterContext {
match target {
NavigationTarget::Internal(p) => {
let mut state = self.state_mut();
state.history.push(Rc::new(p))
state.history.push(p)
}
NavigationTarget::External(e) => return self.external(e),
}
@ -195,7 +195,7 @@ impl RouterContext {
{
let mut state = self.state_mut();
match target {
NavigationTarget::Internal(p) => state.history.replace(Rc::new(p)),
NavigationTarget::Internal(p) => state.history.replace(p),
NavigationTarget::External(e) => return self.external(e),
}
}