Bug
EventForm.js (line ~308-316) adds a window keydown listener but the reference is not tracked by the cleanup() method. When the form is destroyed and recreated, listeners accumulate.
Fix
Store the listener reference and remove it in cleanup() / disconnectedCallback().
Bug
EventForm.js(line ~308-316) adds a window keydown listener but the reference is not tracked by thecleanup()method. When the form is destroyed and recreated, listeners accumulate.Fix
Store the listener reference and remove it in
cleanup()/disconnectedCallback().