mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-21 18:05:11 +00:00
chore: format
This commit is contained in:
parent
a9ab7be92f
commit
2dfc13e455
1 changed files with 1 additions and 3 deletions
|
|
@ -574,9 +574,7 @@ export class InteractiveMode {
|
||||||
// Show skill warnings if any
|
// Show skill warnings if any
|
||||||
const skillWarnings = this.session.skillWarnings;
|
const skillWarnings = this.session.skillWarnings;
|
||||||
if (skillWarnings.length > 0) {
|
if (skillWarnings.length > 0) {
|
||||||
const warningList = skillWarnings
|
const warningList = skillWarnings.map((w) => theme.fg("warning", ` ${w.skillPath}: ${w.message}`)).join("\n");
|
||||||
.map((w) => theme.fg("warning", ` ${w.skillPath}: ${w.message}`))
|
|
||||||
.join("\n");
|
|
||||||
this.chatContainer.addChild(new Text(theme.fg("warning", "Skill warnings:\n") + warningList, 0, 0));
|
this.chatContainer.addChild(new Text(theme.fg("warning", "Skill warnings:\n") + warningList, 0, 0));
|
||||||
this.chatContainer.addChild(new Spacer(1));
|
this.chatContainer.addChild(new Spacer(1));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue