Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
DimaAmega committed Dec 23, 2024
1 parent b7a10c1 commit 367ce69
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions ui/service/src/routes/src/dashboard/import.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// export * as Dashboard from '~/routes/src/dashboard/dashboard-main'
// export * as Dashboard from './dashboard-main'

// we export it lazy because of ~2.6 MB chunk size :) plotly.js is too big :3
const lazy = () => import('~/routes/src/dashboard/dashboard-main')
const lazy = () => import('./dashboard-main')
export const DashboardLazy = { lazy } as const
4 changes: 2 additions & 2 deletions ui/service/src/routes/src/home/import.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * as Home from '~/routes/src/home/home-main'
export * as Home from './home-main'

// const lazy = () => import('~/routes/src/home/home-main')
// const lazy = () => import('./home-main')
// export const Home = { lazy } as const
4 changes: 2 additions & 2 deletions ui/service/src/routes/src/project/import.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * as Project from '~/routes/src/project/project-main'
export * as Project from './project-main'

// const lazy = () => import('~/routes/src/project/project-main')
// const lazy = () => import('./project-main')
// export const Project = { lazy } as const
4 changes: 2 additions & 2 deletions ui/service/src/routes/src/projects-list/import.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * as ProjectsList from '~/routes/src/projects-list/projects-list-main'
export * as ProjectsList from './projects-list-main'

// const lazy = () => import('~/routes/src/projects-list/projects-list-main')
// const lazy = () => import('./projects-list-main')
// export const ProjectsList = { lazy } as const
2 changes: 1 addition & 1 deletion ui/service/src/routes/src/reports-layout/import.tsx
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * as ReportsLayout from '~/routes/src/reports-layout/reports-layout-main'
export * as ReportsLayout from './reports-layout-main'
4 changes: 2 additions & 2 deletions ui/service/src/routes/src/reports-list/import.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * as ReportsList from '~/routes/src/reports-list/reports-list-main'
export * as ReportsList from './reports-list-main'

// const lazy = () => import('~/routes/src/projects-list/projects-list-main')
// const lazy = () => import('./reports-list-main')
// export const Reports = { lazy } as const
2 changes: 1 addition & 1 deletion ui/service/src/routes/src/snapshot-view/import.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// export * as SnapshotId from '~/routes/src/snapshot-view/snapshot-view-main'

// we export it lazy because of ~2.6 MB chunk size :) plotly.js is too big :3
const lazy = () => import('~/routes/src/snapshot-view/snapshot-view-main')
const lazy = () => import('./snapshot-view-main')
export const SnapshotIdLazy = { lazy } as const
2 changes: 1 addition & 1 deletion ui/service/src/routes/src/test-suites-layout/import.tsx
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * as TestSuitesLayout from '~/routes/src/test-suites-layout/test-suites-layout-main'
export * as TestSuitesLayout from './test-suites-layout-main'
4 changes: 2 additions & 2 deletions ui/service/src/routes/src/test-suites-list/import.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export * as TestSuitesList from '~/routes/src/test-suites-list/test-suites-list-main'
export * as TestSuitesList from './test-suites-list-main'

// const lazy = () => import('~/routes/src/projects-list/projects-list-main')
// const lazy = () => import('./projects-list-main')
// export const Reports = { lazy } as const

0 comments on commit 367ce69

Please sign in to comment.