fix : show live eval when depth is > 6

This commit is contained in:
GuillaumeSD
2024-02-25 03:14:57 +01:00
parent 2af25cf4ec
commit fae1441232
2 changed files with 3 additions and 3 deletions

View File

@@ -24,7 +24,7 @@ export default function ReviewPanelBody() {
(_, i) => ({ pv: [`${i}`], depth: 0, multiPv: i + 1 })
);
const engineLines = move?.eval?.lines.length
const engineLines = move?.eval?.lines?.length
? move.eval.lines
: linesSkeleton;