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've encountered some issues with the Typescript compilation and a linting warning in the Etch-A-Sketch SolidJS example code. Here are the details:
Typescript error: The type definition for the style attribute seems incorrect. The error message is:
Type '{ display: string; "grid-template-rows": string; "grid-template-columns": string; }' is not assignable to type 'string | CSSProperties | undefined'.
Typescript error: The render function is receiving a null type argument which is not compatible with its expected parameter type. The error message is:
Argument of type 'HTMLElement | null' is not assignable to parameter of type 'MountableElement'.
ESLint warning: The code has an empty div component which is not self-closing, raising a lint warning:
Empty components are self-closing.
This is a minor issue but could be improved for better code quality.
The text was updated successfully, but these errors were encountered:
I've encountered some issues with the Typescript compilation and a linting warning in the Etch-A-Sketch SolidJS example code. Here are the details:
Typescript error: The type definition for the
style
attribute seems incorrect. The error message is:Type '{ display: string; "grid-template-rows": string; "grid-template-columns": string; }' is not assignable to type 'string | CSSProperties | undefined'.
Typescript error: The
render
function is receiving anull
type argument which is not compatible with its expected parameter type. The error message is:Argument of type 'HTMLElement | null' is not assignable to parameter of type 'MountableElement'.
ESLint warning: The code has an empty div component which is not self-closing, raising a lint warning:
Empty components are self-closing.
The text was updated successfully, but these errors were encountered: