fbc270278e
**Problem**: Toggles in action bar and hamburger menu were not synchronizing. When user clicked one toggle, the other didn't update. **Root Cause**: After restoring toggle functions, they were setting BOTH checkboxes explicitly instead of using the hyperscript 'or' operator pattern from the working version. **Fix**: Restored the original pattern from commitd4ef91b: - Use `set otherToggle to (#lengthToggle or #lengthToggleMenu)` - This dynamically selects "the other" toggle (not the one being clicked) - Simplified code: removed redundant null checks for both checkboxes - Fixed all 3 toggles: toggleCVLength, toggleIcons, toggleTheme **Benefits**: - Toggles now properly sync between action bar and menu - Cleaner, more maintainable code - Matches the proven working pattern **Reference**: Compared with working version at commitd4ef91b