fix(frontend): remove debug_rate_limit_headers from ai-providers page

This commit is contained in:
null 2026-05-20 23:04:36 -05:00
parent ebba838025
commit fc4094d49f
2 changed files with 4 additions and 5 deletions

View File

@ -32,5 +32,8 @@
**/.env
**/.env.*
# Data directory (postgres persistence)
data/
# Logs
**/*.log

View File

@ -238,11 +238,7 @@ function CredentialForm({
<p className="mt-1 text-muted">
{testResult.error ?? `${testResult.models?.length ?? 0} model${(testResult.models?.length ?? 0) === 1 ? "" : "s"} returned`}
</p>
{testResult.debug_rate_limit_headers && testResult.debug_rate_limit_headers.length > 0 && (
<p className="mt-1 text-muted">
Rate-limit headers: {testResult.debug_rate_limit_headers.join(", ")}
</p>
)}
</div>
)}
</div>