Frontend: typo setPgMclips should be setPgmClips for consistency #124

Closed
opened 2026-05-26 18:21:56 -04:00 by zgaetano · 1 comment
Owner

Fixed in 04ce096setPgMclipssetPgmClips in screens-editor.jsx.

Fixed in 04ce096 — `setPgMclips` → `setPgmClips` in `screens-editor.jsx`.
Author
Owner

Fix Plan — #124 Typo setPgMclips should be setPgmClips

Root cause: screens-editor.jsx:621 — reader is pgmClips, setter is setPgMclips. Capitalization mismatch.

Fix — search-replace:

// before:
const [pgmClips, setPgMclips] = useState([]);

// after:
const [pgmClips, setPgmClips] = useState([]);

Files: screens-editor.jsx:621
Effort: 5min
**Priority: P3 — typo

## Fix Plan — #124 Typo setPgMclips should be setPgmClips **Root cause:** `screens-editor.jsx:621` — reader is `pgmClips`, setter is `setPgMclips`. Capitalization mismatch. **Fix — search-replace:** ```js // before: const [pgmClips, setPgMclips] = useState([]); // after: const [pgmClips, setPgmClips] = useState([]); ``` **Files:** `screens-editor.jsx:621` **Effort:** 5min **Priority: P3 — typo
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: WildDragonLLC/dragonflight#124
No description provided.