From 99d8d34d48ef13720b05d1098cec21da25701135 Mon Sep 17 00:00:00 2001 From: Finn Evers Date: Tue, 2 Dec 2025 00:27:27 +0100 Subject: [PATCH] Fix failing CI on main (#43956) Release Notes: - N/A --- crates/zeta/src/zeta.rs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/crates/zeta/src/zeta.rs b/crates/zeta/src/zeta.rs index d22617e3affcda6239a84977e7aff8c039865520..4203ea8fd6dffe3f2cca061f0895cd9c3f659f19 100644 --- a/crates/zeta/src/zeta.rs +++ b/crates/zeta/src/zeta.rs @@ -896,7 +896,6 @@ impl Zeta { .await; Self::handle_api_response(&this, response, cx)?; - dbg!(); anyhow::Ok(()) }) .detach_and_log_err(cx); @@ -912,7 +911,6 @@ impl Zeta { let llm_token = self.llm_token.clone(); let app_version = AppVersion::global(cx); let last_rejection = self.rejected_predictions.last().cloned(); - dbg!(self.rejected_predictions.len()); let Some(last_rejection) = last_rejection else { return Task::ready(anyhow::Ok(())); }; @@ -940,11 +938,10 @@ impl Zeta { .context("Failed to reject edit predictions")?; this.update(cx, |this, _| { - if let Some(ix) = - dbg!(this + if let Some(ix) = this .rejected_predictions .iter() - .position(|rejection| rejection.request_id == last_rejection.request_id)) + .position(|rejection| rejection.request_id == last_rejection.request_id) { this.rejected_predictions.drain(..ix + 1); }