mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 12:43:08 +00:00
fix render links assuming prelude was imported
This commit is contained in:
parent
2da1f7faa7
commit
0eb3b3d47e
1 changed files with 1 additions and 1 deletions
|
@ -484,7 +484,7 @@ impl RouteEnum {
|
|||
#(#site_map,)*
|
||||
];
|
||||
|
||||
fn render<'a>(&self, cx: &'a ScopeState, level: usize) -> Element<'a> {
|
||||
fn render<'a>(&self, cx: &'a dioxus::prelude::ScopeState, level: usize) -> dioxus::prelude::Element<'a> {
|
||||
let myself = self.clone();
|
||||
match (level, myself) {
|
||||
#(#matches)*
|
||||
|
|
Loading…
Reference in a new issue