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 +```