summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/global/MkCustomEmoji.stories.impl.ts
diff options
context:
space:
mode:
authorAcid Chicken (硫酸鶏) <root@acid-chicken.com>2023-04-01 16:26:08 +0900
committerAcid Chicken (硫酸鶏) <root@acid-chicken.com>2023-04-01 16:26:08 +0900
commit1521bb088cbafb53f8c829a60748d4bc0469a8cd (patch)
tree04719cc96897fb3b3e2b606a3d2b76d1945be517 /packages/frontend/src/components/global/MkCustomEmoji.stories.impl.ts
parentfix: pointer handling (diff)
downloadmisskey-1521bb088cbafb53f8c829a60748d4bc0469a8cd.tar.gz
misskey-1521bb088cbafb53f8c829a60748d4bc0469a8cd.tar.bz2
misskey-1521bb088cbafb53f8c829a60748d4bc0469a8cd.zip
build(#10336): finalize
Diffstat (limited to 'packages/frontend/src/components/global/MkCustomEmoji.stories.impl.ts')
-rw-r--r--packages/frontend/src/components/global/MkCustomEmoji.stories.impl.ts5
1 files changed, 2 insertions, 3 deletions
diff --git a/packages/frontend/src/components/global/MkCustomEmoji.stories.impl.ts b/packages/frontend/src/components/global/MkCustomEmoji.stories.impl.ts
index b31b303e7f..e91fc4e2ee 100644
--- a/packages/frontend/src/components/global/MkCustomEmoji.stories.impl.ts
+++ b/packages/frontend/src/components/global/MkCustomEmoji.stories.impl.ts
@@ -1,5 +1,4 @@
/* eslint-disable @typescript-eslint/explicit-function-return-type */
-/* eslint-disable import/no-duplicates */
import { StoryObj } from '@storybook/vue3';
import MkCustomEmoji from './MkCustomEmoji.vue';
export const Default = {
@@ -37,10 +36,10 @@ export const Normal = {
...Default.args,
normal: true,
},
-};
+} satisfies StoryObj<typeof MkCustomEmoji>;
export const Missing = {
...Default,
args: {
name: Default.args.name,
},
-};
+} satisfies StoryObj<typeof MkCustomEmoji>;