From a3a3f111f86fba244ca9b26382bbab065785e61a Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Fri, 1 Aug 2025 14:44:17 -0400 Subject: [PATCH] zeta: Rename binding back to `user_store` (#35486) This PR renames a binding from `cloud_user_store` to `user_store` now that we've consolidated the two into the `UserStore`. Release Notes: - N/A --- crates/zeta/src/zeta.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/zeta/src/zeta.rs b/crates/zeta/src/zeta.rs index 18b9217b95..f051dfde0b 100644 --- a/crates/zeta/src/zeta.rs +++ b/crates/zeta/src/zeta.rs @@ -1588,8 +1588,8 @@ impl inline_completion::EditPredictionProvider for ZetaInlineCompletionProvider .zeta .read(cx) .user_store - .read_with(cx, |cloud_user_store, _cx| { - cloud_user_store.account_too_young() || cloud_user_store.has_overdue_invoices() + .read_with(cx, |user_store, _cx| { + user_store.account_too_young() || user_store.has_overdue_invoices() }) { return;