(event)
| 20 | |
| 21 | // Prevents keyboard accessibility issues by handling Enter key for submit |
| 22 | const handleKeyDown = (event) => { |
| 23 | if (event.key === 'Enter') { |
| 24 | handleJoin(); |
| 25 | } |
| 26 | }; |
| 27 | |
| 28 | if (!isOpen) return null; |
| 29 |
nothing calls this directly
no test coverage detected