diff options
| author | TymanWasTaken <ty@blahaj.land> | 2024-08-14 05:37:28 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-14 12:37:28 +0100 |
| commit | 72a562a38e15e12b39381d435f6977eb938783b0 (patch) | |
| tree | b3279a1db4198853e354fb60171d04f318be0906 | |
| parent | chore: update rust to `1.80.1` (#2362) (diff) | |
| download | atuin-72a562a38e15e12b39381d435f6977eb938783b0.zip | |
fix: remove dbg! macro (#2355)
| -rw-r--r-- | crates/atuin-client/src/api_client.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/crates/atuin-client/src/api_client.rs b/crates/atuin-client/src/api_client.rs index 53f24424..19820b29 100644 --- a/crates/atuin-client/src/api_client.rs +++ b/crates/atuin-client/src/api_client.rs @@ -392,8 +392,6 @@ impl<'a> Client<'a> { .send() .await?; - dbg!(&resp); - if resp.status() == 401 { bail!("current password is incorrect") } else if resp.status() == 403 { |
