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:
parent
8fd0786235
commit
7f4978759b
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue