diff --git a/frontend/src/app.rs b/frontend/src/app.rs
index b1ed5df..c13040b 100644
--- a/frontend/src/app.rs
+++ b/frontend/src/app.rs
@@ -100,7 +100,7 @@ fn InnerApp() -> impl IntoView {
view! {
- "404 Not Found"
}>
+ "404 Not Found" }.into_any()>
impl IntoView {
}
});
- view! { }
+ view! { }.into_any()
} />
impl IntoView {
}
});
- view! { }
+ view! { }.into_any()
} />
impl IntoView {
- }
+ }.into_any()
}>
@@ -174,7 +174,7 @@ fn InnerApp() -> impl IntoView {
- }
+ }.into_any()
}/>
impl IntoView {
view! {
-
+
"Settings Page (Coming Soon)"
- }
+ }.into_any()
}/>
diff --git a/frontend/src/components/ui/context_menu.rs b/frontend/src/components/ui/context_menu.rs
index 42c1978..e78780a 100644
--- a/frontend/src/components/ui/context_menu.rs
+++ b/frontend/src/components/ui/context_menu.rs
@@ -139,7 +139,7 @@ pub fn ContextMenuTrigger(
class=trigger_class
data-name="ContextMenuTrigger"
data-context-trigger=ctx.target_id
- on:contextmenu=move |e: web_sys::MouseEvent| {
+ on:contextmenu=move |_e: web_sys::MouseEvent| {
if let Some(cb) = on_open {
cb.run(());
}