fix(web): use const for unused-reassign inference ledger receipt

The staging quality gate already passed 2006 frontend tests, then ESLint failed on prefer-const in the BUG-367 test helper.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Jesse_Chen
2026-08-25 10:12:08 +08:00
parent 76743683f6
commit d2d7542df1
2 changed files with 17 additions and 1 deletions
@@ -553,7 +553,7 @@ function createLedger(seed: ReturnType<typeof buildInferenceState>) {
const rows: LedgerRow[] = [];
const evidenceFp = "e".repeat(64);
const caseId = "case-1";
let engineReceipt: Record<string, unknown> = { inference_state: seed };
const engineReceipt: Record<string, unknown> = { inference_state: seed };
return {
evidenceFp,
append(input: {