summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/global/MkCondensedLine.stories.impl.ts
diff options
context:
space:
mode:
authorzyoshoka <107108195+zyoshoka@users.noreply.github.com>2024-05-01 16:39:16 +0900
committerGitHub <noreply@github.com>2024-05-01 16:39:16 +0900
commit9c057e6854c22b4bc908485c08364a8a38091167 (patch)
treead9300276ca3e5213bdf6b3a4371cea614c70587 /packages/frontend/src/components/global/MkCondensedLine.stories.impl.ts
parentMerge pull request from GHSA-2vxv-pv3m-3wvj (diff)
downloadsharkey-9c057e6854c22b4bc908485c08364a8a38091167.tar.gz
sharkey-9c057e6854c22b4bc908485c08364a8a38091167.tar.bz2
sharkey-9c057e6854c22b4bc908485c08364a8a38091167.zip
fix(frontend): fix Storybook type errors (#13779)
* fix(frontend): fix Storybook type errors * fix: `hasReduce` doesn't work in args
Diffstat (limited to 'packages/frontend/src/components/global/MkCondensedLine.stories.impl.ts')
-rw-r--r--packages/frontend/src/components/global/MkCondensedLine.stories.impl.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/frontend/src/components/global/MkCondensedLine.stories.impl.ts b/packages/frontend/src/components/global/MkCondensedLine.stories.impl.ts
index e4e90cddd5..e15dcba760 100644
--- a/packages/frontend/src/components/global/MkCondensedLine.stories.impl.ts
+++ b/packages/frontend/src/components/global/MkCondensedLine.stories.impl.ts
@@ -28,6 +28,7 @@ export const Default = {
};
},
args: {
+ // @ts-expect-error text is for test
text: 'This is a condensed line.',
},
parameters: {
@@ -41,4 +42,5 @@ export const ContainerIs100px = {
template: '<div style="width: 100px;"><story/></div>',
}),
],
+ // @ts-expect-error text is for test
} satisfies StoryObj<typeof MkCondensedLine>;