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
This commit is contained in:
Marshall Bowers 2025-08-01 14:44:17 -04:00 committed by GitHub
parent faa45c53d7
commit a3a3f111f8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;