chore: generate

This commit is contained in:
opencode-agent[bot]
2026-03-07 11:26:12 +00:00
parent bbd0f3a252
commit c53c9d4e4e
4 changed files with 11 additions and 5 deletions

View File

@@ -20,7 +20,8 @@ export function ToolStatusTitle(props: {
}) {
const split = createMemo(() => commonPrefix(props.activeText, props.doneText))
const suffix = createMemo(
() => (props.split ?? true) && split().prefix.length >= 2 && split().aSuffix.length > 0 && split().bSuffix.length > 0,
() =>
(props.split ?? true) && split().prefix.length >= 2 && split().aSuffix.length > 0 && split().bSuffix.length > 0,
)
const prefixLen = createMemo(() => Array.from(split().prefix).length)
const activeTail = createMemo(() => (suffix() ? split().aSuffix : props.activeText))