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
When I use tooltipBodyId, error is reported by svelte language server in lang=ts.
It'll also issued by svelte-check.
Error: Type '{ open: boolean; tooltipBodyId: string; hideIcon: true; }' is not assignable to type'IntrinsicAttributes & TooltipProps'.
Property 'tooltipBodyId' does not exist on type'IntrinsicAttributes & TooltipProps'. (ts)
<Tooltip {open} tooltipBodyId="tooltip-body" hideIcon><p id="tooltip-body">Copied!</p>
The text was updated successfully, but these errors were encountered:
Tooltip's
tooltipBodyId
does not appear in type definition.The cause may be here:
sveld/integration/carbon/src/Tooltip/Tooltip.svelte
Line 226 in f13b5cf
export let ...
style is not used.When I use
tooltipBodyId
, error is reported by svelte language server inlang=ts
.It'll also issued by
svelte-check
.The text was updated successfully, but these errors were encountered: