chore: hotwire fix for core (#9500)

This commit is contained in:
Shubham Naik
2026-02-16 16:03:47 -08:00
committed by Caren Thomas
parent e66981c7e8
commit 20c71523f8

View File

@@ -26,6 +26,9 @@ class CreditVerificationService:
Returns True if credits are available or if the service is not configured.
Raises InsufficientCreditsError if no credits remain.
"""
# Early return for now
return True
if not self.endpoint or not self.auth_key:
return True