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
I have noticed some type errors in some files, reported by eslint. Most are due to the usage of type any, or unsafe castings (e.g. assigning a value of type "string | null" to a variable of type "string | null | undefined"). Such type errors might lead to bugs in the long run, so we could fix them by now by adding proper typing and/or type castings.
The text was updated successfully, but these errors were encountered:
I have noticed some type errors in some files, reported by eslint. Most are due to the usage of type any, or unsafe castings (e.g. assigning a value of type "string | null" to a variable of type "string | null | undefined"). Such type errors might lead to bugs in the long run, so we could fix them by now by adding proper typing and/or type castings.
The text was updated successfully, but these errors were encountered: