You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: use nullish coalescing assignment (??=) for feature flag setup
Use ??= instead of ||= for initializing Vaadin.featureFlags objects.
This is more semantically correct as it only assigns when the value
is nullish (null/undefined) rather than any falsy value, preventing
accidental overwrites of existing objects.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
0 commit comments