diff --git a/ui/service/src/routes/src/dashboard/import.tsx b/ui/service/src/routes/src/dashboard/import.tsx index 2ada96c654..ee984dc9c7 100644 --- a/ui/service/src/routes/src/dashboard/import.tsx +++ b/ui/service/src/routes/src/dashboard/import.tsx @@ -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 diff --git a/ui/service/src/routes/src/home/import.tsx b/ui/service/src/routes/src/home/import.tsx index bdacec00fd..ecb1ef67c0 100644 --- a/ui/service/src/routes/src/home/import.tsx +++ b/ui/service/src/routes/src/home/import.tsx @@ -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 diff --git a/ui/service/src/routes/src/project/import.tsx b/ui/service/src/routes/src/project/import.tsx index 9142da02ba..15ee6610fe 100644 --- a/ui/service/src/routes/src/project/import.tsx +++ b/ui/service/src/routes/src/project/import.tsx @@ -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 diff --git a/ui/service/src/routes/src/projects-list/import.tsx b/ui/service/src/routes/src/projects-list/import.tsx index 52d2ed0d51..ca1302887f 100644 --- a/ui/service/src/routes/src/projects-list/import.tsx +++ b/ui/service/src/routes/src/projects-list/import.tsx @@ -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 diff --git a/ui/service/src/routes/src/reports-layout/import.tsx b/ui/service/src/routes/src/reports-layout/import.tsx index 571be09193..6722ba127b 100644 --- a/ui/service/src/routes/src/reports-layout/import.tsx +++ b/ui/service/src/routes/src/reports-layout/import.tsx @@ -1 +1 @@ -export * as ReportsLayout from '~/routes/src/reports-layout/reports-layout-main' +export * as ReportsLayout from './reports-layout-main' diff --git a/ui/service/src/routes/src/reports-list/import.tsx b/ui/service/src/routes/src/reports-list/import.tsx index 6630a97e7f..5a26bde7c0 100644 --- a/ui/service/src/routes/src/reports-list/import.tsx +++ b/ui/service/src/routes/src/reports-list/import.tsx @@ -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 diff --git a/ui/service/src/routes/src/snapshot-view/import.tsx b/ui/service/src/routes/src/snapshot-view/import.tsx index 10634bf95f..ce3841d540 100644 --- a/ui/service/src/routes/src/snapshot-view/import.tsx +++ b/ui/service/src/routes/src/snapshot-view/import.tsx @@ -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 diff --git a/ui/service/src/routes/src/test-suites-layout/import.tsx b/ui/service/src/routes/src/test-suites-layout/import.tsx index b18c7d1f2e..0516e72da4 100644 --- a/ui/service/src/routes/src/test-suites-layout/import.tsx +++ b/ui/service/src/routes/src/test-suites-layout/import.tsx @@ -1 +1 @@ -export * as TestSuitesLayout from '~/routes/src/test-suites-layout/test-suites-layout-main' +export * as TestSuitesLayout from './test-suites-layout-main' diff --git a/ui/service/src/routes/src/test-suites-list/import.tsx b/ui/service/src/routes/src/test-suites-list/import.tsx index 0ae143e379..7e250aeb23 100644 --- a/ui/service/src/routes/src/test-suites-list/import.tsx +++ b/ui/service/src/routes/src/test-suites-list/import.tsx @@ -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