From ed1fe2b82b4d16e4ae0eb1bd0cfeeebe8a545dc6 Mon Sep 17 00:00:00 2001 From: JC Franco Date: Thu, 4 Jan 2024 15:19:52 -0800 Subject: [PATCH] refactor: remove @ts-ignore needed for Stencil missing in JSX types (#8551) **Related Issue:** N/A ## Summary [Stencil 4.8.0](https://github.com/ionic-team/stencil/blob/main/CHANGELOG.md#-480-2023-11-27) added `inert` to the JSX types, so this is no longer needed. --- packages/calcite-components/src/utils/interactive.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/calcite-components/src/utils/interactive.tsx b/packages/calcite-components/src/utils/interactive.tsx index 0e6ed677429..63073d1ecc5 100644 --- a/packages/calcite-components/src/utils/interactive.tsx +++ b/packages/calcite-components/src/utils/interactive.tsx @@ -194,8 +194,6 @@ export function InteractiveContainer( children: VNode[], ): FunctionalComponent { return ( - // eslint-disable-next-line @typescript-eslint/ban-ts-comment - // @ts-ignore-error - `inert` is missing from Stencil's types (see https://github.com/ionic-team/stencil/issues/5071)
{...children}