From 259b12a3a26b940ffd04caf560c0ee92ef057a42 Mon Sep 17 00:00:00 2001 From: YozhEzhi Date: Tue, 30 Mar 2021 10:51:48 +0300 Subject: [PATCH] Update my-component-story-use-globaltype.js.mdx https://github.com/storybookjs/storybook/issues/13602 --- docs/snippets/common/my-component-story-use-globaltype.js.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/snippets/common/my-component-story-use-globaltype.js.mdx b/docs/snippets/common/my-component-story-use-globaltype.js.mdx index d55bc634a5cf..34ad2771da75 100644 --- a/docs/snippets/common/my-component-story-use-globaltype.js.mdx +++ b/docs/snippets/common/my-component-story-use-globaltype.js.mdx @@ -8,7 +8,7 @@ const getCaptionForLocale = (locale) => { case 'kr': return '안녕하세요!'; case 'zh': return '你好!'; default: - return 'Hello!', + return 'Hello!'; } } @@ -16,4 +16,4 @@ export const StoryWithLocale = (args, { globals: { locale } }) => { const caption = getCaptionForLocale(locale); return <>{caption}; }; -``` \ No newline at end of file +```