mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-19 07:47:28 +00:00
fix: format TUI assembler fallback helper (openclaw#15573) thanks @TsekaLuk
This commit is contained in:
@@ -64,7 +64,9 @@ function isDroppedBoundaryTextBlockSubset(params: {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
const prefixMatches = finalTextBlocks.every((block, index) => streamedTextBlocks[index] === block);
|
const prefixMatches = finalTextBlocks.every(
|
||||||
|
(block, index) => streamedTextBlocks[index] === block,
|
||||||
|
);
|
||||||
if (prefixMatches) {
|
if (prefixMatches) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user