Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4de8897

Browse files
committedJun 23, 2025··
fix: lint
1 parent 491ed61 commit 4de8897

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎crates/bitwarden-ipc/src/wasm/discover.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ pub async fn ipc_request_discover(
2424
destination: Endpoint,
2525
abort_signal: Option<AbortSignal>,
2626
) -> Result<DiscoverResponse, RequestError> {
27-
Ok(ipc_client
27+
ipc_client
2828
.client
2929
.request(
3030
DiscoverRequest,
3131
destination,
3232
abort_signal.map(|c| c.to_cancellation_token()),
3333
)
34-
.await?)
34+
.await
3535
}

0 commit comments

Comments
 (0)
Please sign in to comment.