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

View File

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