fix: format TUI assembler fallback helper (openclaw#15573) thanks @TsekaLuk

This commit is contained in:
Peter Steinberger 2026-02-13 18:43:33 +01:00
parent f8efebc2d8
commit e4a5e3c8a6
1 changed files with 3 additions and 1 deletions

View File

@ -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;
}