mirror of https://github.com/openclaw/openclaw.git
fix: format TUI assembler fallback helper (openclaw#15573) thanks @TsekaLuk
This commit is contained in:
parent
f8efebc2d8
commit
e4a5e3c8a6
|
|
@ -64,7 +64,9 @@ function isDroppedBoundaryTextBlockSubset(params: {
|
|||
return false;
|
||||
}
|
||||
|
||||
const prefixMatches = finalTextBlocks.every((block, index) => streamedTextBlocks[index] === block);
|
||||
const prefixMatches = finalTextBlocks.every(
|
||||
(block, index) => streamedTextBlocks[index] === block,
|
||||
);
|
||||
if (prefixMatches) {
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue