Skip to content
This repository was archived by the owner on Sep 20, 2024. It is now read-only.

Commit 5fe5ea6

Browse files
committed
build: ts-ignore
1 parent c6e2c2a commit 5fe5ea6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/c-button/src/button.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ const CButton = defineComponent({
8989

9090
return () => (
9191
<chakra.button
92-
// @ts-expect-error JSX props error
92+
// @ts-ignore JSX props error
9393
as={props.as}
9494
label="button"
9595
disabled={props.isDisabled || props.isLoading}
@@ -124,7 +124,7 @@ const CButtonSpinner = defineComponent({
124124
...props.__css,
125125
}
126126
return () => (
127-
// @ts-expect-error JSX props error
127+
// @ts-ignore JSX props error
128128
<chakra.div label="button__spinner" baseStyle={{}} {...attrs} __css={spinnerStyles}>
129129
{slots ?? slots}
130130
</chakra.div>
@@ -149,7 +149,7 @@ const CButtonIcon = defineComponent({
149149
: children?.[0]
150150

151151
return () =>
152-
// @ts-expect-error JSX props error
152+
// @ts-ignore JSX props error
153153
<chakra.span label="button__icon" {...attrs}>
154154
{_children}
155155
</chakra.span>

0 commit comments

Comments
 (0)