JoDo-dev
Results
2
comments of
JoDo-dev
I had a similar problem... in my case it was a simple Linting issue with Typescript: Wrong: ``` // Object "createNewRef" is possibly 'undefined'. createNewRef.focus(); ``` easy Fix: ``` createNewRef?.focus();...
Jup, I had this issue in `105.22.0` and `105.22.1`