aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/links
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/links')
-rw-r--r--src/components/atoms/links/sharing-link.stories.tsx5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/components/atoms/links/sharing-link.stories.tsx b/src/components/atoms/links/sharing-link.stories.tsx
index c91e938..e6bd11b 100644
--- a/src/components/atoms/links/sharing-link.stories.tsx
+++ b/src/components/atoms/links/sharing-link.stories.tsx
@@ -1,5 +1,4 @@
import { ComponentMeta, ComponentStory } from '@storybook/react';
-import { IntlProvider } from 'react-intl';
import SharingLinkComponent from './sharing-link';
/**
@@ -41,9 +40,7 @@ export default {
} as ComponentMeta<typeof SharingLinkComponent>;
const Template: ComponentStory<typeof SharingLinkComponent> = (args) => (
- <IntlProvider locale="en">
- <SharingLinkComponent {...args} />
- </IntlProvider>
+ <SharingLinkComponent {...args} />
);
/**