Skip to content

Commit c051ca8

Browse files
committed
fix: correct spelling of 'Foundary' to 'Foundry' in component titles and imports
BREAKING CHANGE
1 parent ddf9511 commit c051ca8

27 files changed

Lines changed: 35 additions & 35 deletions

src/components/Foundry/DashboardHeader.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { action } from '@storybook/addon-actions'
33
import { DashboardHeader } from './DashboardHeader'
44

55
const meta: Meta<typeof DashboardHeader> = {
6-
title: 'Foundary/DashboardHeader',
6+
title: 'Foundry/DashboardHeader',
77
component: DashboardHeader,
88
parameters: {
99
layout: 'fullscreen',

src/components/Foundry/FoundaryLayout.stories.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import type { Meta, StoryObj } from '@storybook/react'
2-
import { FoundaryLayout } from './foundary-layout'
2+
import { FoundryLayout } from './foundary-layout'
33
import { mockSidebarItems, mockNotifications } from './test-data'
44
import { businessUnits } from './test-data'
55
import { action } from '@storybook/addon-actions'
66

7-
const meta: Meta<typeof FoundaryLayout> = {
8-
title: 'Foundary/FoundaryLayout',
9-
component: FoundaryLayout,
7+
const meta: Meta<typeof FoundryLayout> = {
8+
title: 'Foundry/FoundryLayout',
9+
component: FoundryLayout,
1010
parameters: {
1111
layout: 'fullscreen',
1212
},
@@ -18,7 +18,7 @@ const meta: Meta<typeof FoundaryLayout> = {
1818
}
1919

2020
export default meta
21-
type Story = StoryObj<typeof FoundaryLayout>
21+
type Story = StoryObj<typeof FoundryLayout>
2222

2323
export const Default: Story = {
2424
args: {

src/components/Foundry/LandingMenu.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { action } from '@storybook/addon-actions'
44
import { LandingMenu } from './LandingMenu'
55

66
const meta: Meta<typeof LandingMenu> = {
7-
title: 'Foundary/LandingMenu',
7+
title: 'Foundry/LandingMenu',
88
component: LandingMenu,
99
parameters: {
1010
layout: 'fullscreen',

src/components/Foundry/Login.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { action } from '@storybook/addon-actions'
33
import { Login } from './Login'
44

55
const meta: Meta<typeof Login> = {
6-
title: 'Foundary/Login',
6+
title: 'Foundry/Login',
77
component: Login,
88
parameters: {
99
layout: 'fullscreen',

src/components/Foundry/MainPage.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const ServiceIcon = () => <DynamicIcon iconName="cloud-network-sharing" size="4x
5252
const ProductIcon = () => <DynamicIcon iconName="development" size="4x" type="kit" />
5353

5454
export default {
55-
title: 'Foundary/Main Page',
55+
title: 'Foundry/Main Page',
5656
component: MainPage,
5757
decorators: [
5858
(Story: React.FC) => (

src/components/Foundry/ManagementSidebar.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { action } from '@storybook/addon-actions'
33
import { ManagementSidebar } from './ManagementSidebar'
44

55
const meta: Meta<typeof ManagementSidebar> = {
6-
title: 'Foundary/ManagementSidebar',
6+
title: 'Foundry/ManagementSidebar',
77
component: ManagementSidebar,
88
parameters: {
99
layout: 'fullscreen',

src/components/Foundry/Pages/dashboardpage.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
import type { Meta, StoryObj } from '@storybook/react'
1111

1212
const meta: Meta<typeof Home> = {
13-
title: 'Foundary/Pages/DashboardPage',
13+
title: 'Foundry/Pages/DashboardPage',
1414
component: Home,
1515
parameters: {
1616
layout: 'fullscreen',

src/components/Foundry/Pages/dashboardpage.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { useState } from 'react'
44
import { motion, AnimatePresence } from 'motion/react'
55
import { Bot } from 'lucide-react'
6-
import { FoundaryLayout } from '../foundary-layout'
6+
import { FoundryLayout } from '../foundary-layout'
77
import { DashboardHero } from '../../Heros/DashboardHero'
88
import { AppCard } from '../../.archive/app-card'
99
import { FileList } from '../../Projects/file-list'
@@ -327,7 +327,7 @@ export default function Home({
327327
}
328328

329329
return (
330-
<FoundaryLayout
330+
<FoundryLayout
331331
sidebarItems={mockSidebarItems}
332332
title={title}
333333
notifications={mockNotifications}
@@ -355,6 +355,6 @@ export default function Home({
355355
{renderTabContent()}
356356
</motion.div>
357357
</AnimatePresence>
358-
</FoundaryLayout>
358+
</FoundryLayout>
359359
)
360360
}

src/components/Foundry/Views/ColleaguesView.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ const mockExistingDigitalColleagues: DigitalColleague[] = [
142142
]
143143

144144
const meta: Meta<typeof ColleaguesView> = {
145-
title: 'Foundary/Views/ColleaguesView',
145+
title: 'Foundry/Views/ColleaguesView',
146146
component: ColleaguesView,
147147
parameters: {
148148
layout: 'fullscreen',

src/components/Foundry/Views/KnowledgeView.docs.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Meta } from '@storybook/blocks'
22

3-
<Meta title="Foundary/Views/KnowledgeView/Documentation" />
3+
<Meta title="Foundry/Views/KnowledgeView/Documentation" />
44

55
# KnowledgeView Component Documentation
66

0 commit comments

Comments
 (0)