Skip to content

Commit

Permalink
Remove status page link from Footer
Browse files Browse the repository at this point in the history
  • Loading branch information
kylegach committed Jun 11, 2024
1 parent 4c13d17 commit f7bb1cc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
7 changes: 6 additions & 1 deletion src/components/Footer/Footer.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,19 @@ const links = {
tutorials: { url: 'https://storybook.js.org/tutorials' },
changelog: { url: '/releases', linkWrapper: FakeGatsbyLink },
telemetry: { url: '/telemetry', linkWrapper: FakeGatsbyLink },
status: { url: 'https://storybook.js.org/status' },
showcase: { url: 'https://storybook.js.org/showcase' },
projects: { url: 'https://storybook.js.org/showcase/projects' },
componentGlossary: { url: 'https://storybook.js.org/showcase/glossary' },
integrations: { url: '/integrations', linkWrapper: FakeGatsbyLink },
getInvolved: { url: '/community', linkWrapper: FakeGatsbyLink },
blog: { url: 'https://storybook.js.org/blog' },
hiring: { url: 'https://www.chromatic.com/company/jobs' },
enterprise: {
url: 'https://www.chromatic.com/sales?utm_source=storybook_website&utm_medium=link&utm_campaign=storybook',
},
chromatic: {
url: 'https://www.chromatic.com/storybook?utm_source=storybook_website&utm_medium=link&utm_campaign=storybook',
},
};

const Template = (args) => (
Expand Down
1 change: 0 additions & 1 deletion src/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ const footerGroups = (links: Links) => ({
{ label: 'Tutorials', link: links.tutorials },
{ label: 'Changelog', link: links.changelog },
{ label: 'Telemetry', link: links.telemetry },
{ label: 'Status', link: links.status },
],
community: [
{ label: 'Addons', link: links.integrations },
Expand Down
2 changes: 0 additions & 2 deletions src/components/links-context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export interface Links {
tutorials: LinkItem;
changelog: LinkItem;
telemetry: LinkItem;
status: LinkItem;
showcase: LinkItem;
projects: LinkItem;
componentGlossary: LinkItem;
Expand All @@ -33,7 +32,6 @@ export const defaultLinks = {
tutorials: { url: 'https://storybook.js.org/tutorials' },
changelog: { url: 'https://storybook.js.org/releases' },
telemetry: { url: 'https://storybook.js.org/telemetry' },
status: { url: 'https://storybook.js.org/status' },
showcase: { url: 'https://storybook.js.org/showcase' },
projects: { url: 'https://storybook.js.org/showcase/projects' },
componentGlossary: { url: 'https://storybook.js.org/showcase/glossary' },
Expand Down

0 comments on commit f7bb1cc

Please sign in to comment.