Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(handler): optimize command zipping for improved readability
  • Loading branch information
Tunglies committed Dec 1, 2025
commit 5f6385d6ca534d165f3821a5a036bc58b828a778
2 changes: 1 addition & 1 deletion crates/tauri-macros/src/command/handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ impl From<Handler> for proc_macro::TokenStream {
let (paths, attrs, command_name_consts): (Vec<Path>, Vec<Vec<Attribute>>, Vec<Path>) =
command_defs
.into_iter()
.zip(commands.into_iter())
.zip(commands)
.map(|(def, command)| {
let path = def.path;
let attrs = def.attrs;
Expand Down
Loading