fix(dashboard): restore trailing comma after manualFrameRateCap (bf-1usoj)

The inline comment on app.js:63 consumed the trailing comma in the state
object literal, so the parser reached systemHealth on the next line as a
bare identifier -> "Unexpected identifier 'systemHealth'" pageerror.
Add the comma back; key/value unchanged.

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
jedarden 2026-07-09 00:21:04 -04:00
parent 8fd0786235
commit 7f4978759b

View file

@ -60,7 +60,7 @@
lastFrameTime: 0, // Time of last rendered frame
fpsHistory: [], // Recent FPS samples for detecting struggling devices
strugglingDevice: false, // Auto-detected low performance flag
manualFrameRateCap: null // User-specified frame rate cap (null = auto-detect)
manualFrameRateCap: null, // User-specified frame rate cap (null = auto-detect)
// System health tracking
systemHealth: 0,
worstLinkID: null,