chore: format
This commit is contained in:
@@ -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));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user