fix(ui): remove unnecessary tags
This commit is contained in:
@@ -40,13 +40,13 @@ export function createReflectionLines(reflection: {
|
|||||||
}): string[] {
|
}): string[] {
|
||||||
const lines: string[] = []
|
const lines: string[] = []
|
||||||
if (reflection.evaluation_previous_goal) {
|
if (reflection.evaluation_previous_goal) {
|
||||||
lines.push(`<div>🔍 ${reflection.evaluation_previous_goal}</div>`)
|
lines.push(`🔍 ${reflection.evaluation_previous_goal}`)
|
||||||
}
|
}
|
||||||
if (reflection.memory) {
|
if (reflection.memory) {
|
||||||
lines.push(`<div>💾 ${reflection.memory}</div>`)
|
lines.push(`💾 ${reflection.memory}`)
|
||||||
}
|
}
|
||||||
if (reflection.next_goal) {
|
if (reflection.next_goal) {
|
||||||
lines.push(`<div>🎯 ${reflection.next_goal}</div>`)
|
lines.push(`🎯 ${reflection.next_goal}`)
|
||||||
}
|
}
|
||||||
return lines
|
return lines
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user