Found by `lok hunt`: **`src/browser.rs:106-109` - PathBuf clone in sort_by_key** - `path.clone()` allocates heap memory for each sort comparison - Fix: Use `sort_by()` with borrowed references --- *Backend: claude*