You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a null reference error (TypeError: Cannot read properties of null (reading 'files')) when attempting to send files via the extension.
This issue occurs because the DOM has not fully rendered before the onMount function executes, and the inputField is accessed prematurely. The task is to ensure that the file input is accessible before initialization.
Description
There is a null reference error (
TypeError: Cannot read properties of null (reading 'files')
) when attempting to send files via the extension.This issue occurs because the DOM has not fully rendered before the onMount function executes, and the inputField is accessed prematurely. The task is to ensure that the file input is accessible before initialization.
Links / References
tick()
Tasks / Definition of Done
tick()
inonMount
to wait for DOM rendering.Further information
/-
The text was updated successfully, but these errors were encountered: