Add this to the clear at line 89 ```ts if (c.nodeName === 'TEXTAREA') { (c as HTMLTextAreaElement).value = ''; } if (c.nodeName === 'SELECT') { (c as HTMLSelectElement).selectedIndex = 0; } ```
Add this to the clear at line 89