Skip to content

Commit da6f4c4

Browse files
authored
Merge pull request #59 from cortex-reply/fix/project
fix: applies fix for build issues
2 parents 13c72f6 + c5c73f1 commit da6f4c4

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/components/Foundary/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 { DigitalColleageusLayout } from '../foundary-layout'
6+
import { FoundaryLayout } from '../foundary-layout'
77
import { DashboardHero } from '../../Heros/DashboardHero'
88
import { AppCard } from '../../.archive/app-card'
99
import { FileList } from '../../Projects/file-list'
@@ -326,7 +326,7 @@ export default function Home({
326326
}
327327

328328
return (
329-
<DigitalColleageusLayout
329+
<FoundaryLayout
330330
sidebarItems={mockSidebarItems}
331331
title={title}
332332
notifications={mockNotifications}
@@ -354,6 +354,6 @@ export default function Home({
354354
{renderTabContent()}
355355
</motion.div>
356356
</AnimatePresence>
357-
</DigitalColleageusLayout>
357+
</FoundaryLayout>
358358
)
359359
}

src/components/Foundary/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Main Components
22
export { AppSidebarLeft } from './AppSidebarLeft'
33
export { DashboardHeader } from './DashboardHeader'
4-
export { DigitalColleageusLayout } from './foundary-layout'
4+
export { FoundaryLayout } from './foundary-layout'
55
export { default as MainPage } from './MainPage'
66
export { ManagementSidebar } from './ManagementSidebar'
77
export { SearchableSelect } from './SearchableSelect'

0 commit comments

Comments
 (0)