fix(frontend): rename "CoPilot" to "AutoPilot" on credits page (#12481)

Requested by @kcze

Renames "CoPilot" → "AutoPilot" on the credits/usage limits page:

- **Heading:** "CoPilot Usage Limits" → "AutoPilot Usage Limits"
- **Button:** "Open CoPilot" → "Open AutoPilot"
- Comment updated to match

---
Co-authored-by: Zamil Majdy (@majdyz) <zamil.majdy@agpt.co>

Co-authored-by: Zamil Majdy (@majdyz) <zamil.majdy@agpt.co>
This commit is contained in:
Otto
2026-03-19 15:25:21 +00:00
committed by GitHub
parent d4c6eb9adc
commit 0ce1c90b55

View File

@@ -39,12 +39,12 @@ function CoPilotUsageSection() {
return (
<div className="my-6 space-y-4">
<h3 className="text-lg font-medium">CoPilot Usage Limits</h3>
<h3 className="text-lg font-medium">AutoPilot Usage Limits</h3>
<div className="rounded-lg border border-neutral-200 p-4">
<UsagePanelContent usage={usage} showBillingLink={false} />
</div>
<Button className="w-full" onClick={() => router.push("/copilot")}>
Open CoPilot
Open AutoPilot
</Button>
</div>
);
@@ -267,7 +267,7 @@ export default function CreditsPage() {
)}
</form>
{/* CoPilot Usage Limits */}
{/* AutoPilot Usage Limits */}
<CoPilotUsageSection />
</div>