This commit is contained in:
Conrad Irwin 2024-01-15 20:12:20 -07:00
parent 036e637208
commit 18739477f7

View file

@ -114,7 +114,7 @@ impl ModalLayer {
}
impl Render for ModalLayer {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
fn render(&mut self, _: &mut ViewContext<Self>) -> impl IntoElement {
let Some(active_modal) = &self.active_modal else {
return div();
};