Skip to content

Commit 466e109

Browse files
authored
Merge pull request #31539 from storybookjs/remove-empty-state-video
Controls: Remove empty state video link
2 parents 13cac55 + e81ce10 commit 466e109

File tree

1 file changed

+1
-11
lines changed
  • code/addons/docs/src/blocks/components/ArgsTable

1 file changed

+1
-11
lines changed

code/addons/docs/src/blocks/components/ArgsTable/Empty.tsx

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import React, { useEffect, useState } from 'react';
33

44
import { EmptyTabContent, Link } from 'storybook/internal/components';
55

6-
import { DocumentIcon, VideoIcon } from '@storybook/icons';
6+
import { DocumentIcon } from '@storybook/icons';
77

88
import { styled } from 'storybook/theming';
99

@@ -30,12 +30,6 @@ const Links = styled.div(({ theme }) => ({
3030
gap: 25,
3131
}));
3232

33-
const Divider = styled.div(({ theme }) => ({
34-
width: 1,
35-
height: 16,
36-
backgroundColor: theme.appBorderColor,
37-
}));
38-
3933
export const Empty: FC<EmptyProps> = ({ inAddonPanel }) => {
4034
const [isLoading, setIsLoading] = useState(true);
4135

@@ -72,10 +66,6 @@ export const Empty: FC<EmptyProps> = ({ inAddonPanel }) => {
7266
<Links>
7367
{inAddonPanel && (
7468
<>
75-
<Link href="https://youtu.be/0gOfS6K0x0E" target="_blank" withArrow>
76-
<VideoIcon /> Watch 5m video
77-
</Link>
78-
<Divider />
7969
<Link
8070
href="https://storybook.js.org/docs/essentials/controls"
8171
target="_blank"

0 commit comments

Comments
 (0)