There was an error while loading. Please reload this page.
1 parent bfb3f70 commit 399b84dCopy full SHA for 399b84d
1 file changed
src/static/js/welcome.ts
@@ -99,7 +99,7 @@ const handleMenuBarClicked = () => {
99
100
if (codeInputField) {
101
codeInputField.addEventListener('input', (e)=>{
102
- if (e.target.value.length === 36) {
+ if ((e.target as HTMLInputElement).value?.length === 36) {
103
transferSessionButton?.removeAttribute('disabled');
104
} else {
105
transferSessionButton?.setAttribute('disabled', 'true');
0 commit comments