Skip to content

Commit

Permalink
fix: make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
alemidev committed Oct 12, 2024
1 parent 306a687 commit 6d5a703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ffi/js/cursor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ impl CursorController {
/// Block until next
#[napi(js_name = "recv")]
pub async fn js_recv(&self) -> napi::Result<crate::api::Cursor> {
Ok(self.recv().await?.into())
Ok(self.recv().await?)
}
}

0 comments on commit 6d5a703

Please sign in to comment.