From 1fdbe6294e15fa07198df3252b3ee0e4bf31ee6a Mon Sep 17 00:00:00 2001 From: Samuel Gunter Date: Sun, 11 Feb 2024 23:38:24 -0600 Subject: [PATCH] chore: suppress useless TS warnings --- src/stories/components/Button.stories.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/stories/components/Button.stories.tsx b/src/stories/components/Button.stories.tsx index 89c6ac94..f6de21a2 100644 --- a/src/stories/components/Button.stories.tsx +++ b/src/stories/components/Button.stories.tsx @@ -49,6 +49,7 @@ export const Disabled: Story = { }, }; +// @ts-ignore export const Grid: Story = { render: props => (
@@ -70,6 +71,7 @@ export const Grid: Story = { }; export const PrettyColors: Story = { + // @ts-ignore args: { children: '', }, @@ -99,6 +101,7 @@ export const PrettyColors: Story = { }, }; +// @ts-ignore export const CourseButtons: Story = { render: props => (
@@ -119,6 +122,7 @@ export const CourseButtons: Story = { }; export const CourseCatalogActionButtons: Story = { + // @ts-ignore args: { children: '', },