fix fmt tests

This commit is contained in:
Jonathan Kelley 2024-07-02 17:22:53 -07:00
parent b30810e486
commit 90c46afd12
No known key found for this signature in database
GPG key ID: 1FBB50F7EB0A08BE
2 changed files with 2 additions and 10 deletions

View file

@ -12,11 +12,7 @@ pub(crate) fn Nav() -> Element {
let mut sidebar = SHOW_SIDEBAR.write();
*sidebar = !*sidebar;
},
MaterialIcon {
name: "menu",
size: 24,
color: MaterialIconColor::Dark
}
MaterialIcon { name: "menu", size: 24, color: MaterialIconColor::Dark }
}
div { class: "flex z-50 md:flex-1 px-2", LinkList {} }

View file

@ -12,11 +12,7 @@ pub(crate) fn Nav() -> Element {
let mut sidebar = SHOW_SIDEBAR.write();
*sidebar = !*sidebar;
},
MaterialIcon {
name: "menu",
size: 24,
color: MaterialIconColor::Dark
}
MaterialIcon { name: "menu", size: 24, color: MaterialIconColor::Dark }
}
div { class: "flex z-50 md:flex-1 px-2", LinkList {} }
}