Fix clippy

This commit is contained in:
Spxg
2025-07-03 00:02:25 +08:00
parent fc846a81c2
commit 87197ea68a
2 changed files with 3 additions and 3 deletions

View File

@@ -265,7 +265,7 @@ async fn setup_worker(state: Store<GlobalState>, uri: &str) -> WorkerHandle {
match serde_wasm_bindgen::from_value(ev.data()) {
Ok(WorkerResponse::Ready) => notify.notify_one(),
Ok(resp) => tx.send(resp).unwrap(),
Err(err) => log::error!("Failed to parse message {:?}", err),
Err(err) => log::error!("Failed to parse message {err:?}"),
}
});