leptos/leptos_server
martin frances 10c0a2de65
chore: cleared clippy warnings (#1190)
The change in indentation makes the PR hard to review

so I will discuss the change in conversational language

Two "if"'s checks were merged into one "if"

this

-        if let Some(expr) = node.value() {
-            if let syn::Expr::Tuple(tuple) = expr {

becomes

+        if let Some(Tuple(tuple)) = node.value() {
2023-06-15 20:11:50 -04:00
..
src chore: cleared clippy warnings (#1190) 2023-06-15 20:11:50 -04:00
Cargo.toml feat: register server functions automatically (#1154) 2023-06-11 09:09:21 -04:00