fix(coding-agent): warn on Anthropic subscription auth

This commit is contained in:
Mario Zechner
2026-04-08 18:46:40 +02:00
parent d0a4baf8a1
commit 96916f2cad
4 changed files with 120 additions and 4 deletions

View File

@@ -31,6 +31,9 @@ export class EarendilAnnouncementComponent extends Container {
this.addChild(new DynamicBorder((text) => theme.fg("accent", text)));
this.addChild(new Text(theme.bold(theme.fg("accent", "pi has joined Earendil")), 1, 0));
this.addChild(new Spacer(1));
this.addChild(new Text(theme.fg("muted", "Read the blog post:"), 1, 0));
this.addChild(new Text(theme.fg("mdLink", BLOG_URL), 1, 0));
this.addChild(new Spacer(1));
const imageBase64 = loadImageBase64();
if (imageBase64) {
@@ -45,8 +48,6 @@ export class EarendilAnnouncementComponent extends Container {
this.addChild(new Spacer(1));
}
this.addChild(new Text(theme.fg("muted", "Read the blog post:"), 1, 0));
this.addChild(new Text(theme.fg("mdLink", BLOG_URL), 1, 0));
this.addChild(new DynamicBorder((text) => theme.fg("accent", text)));
}
}