File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -43,21 +43,21 @@ export const VariationPage = () => {
43
43
return (
44
44
< div className = "space-y-12" >
45
45
< VariationChart
46
- title = "Total Install Time by Fixture"
47
- variationData = { totalVariationData }
46
+ title = "Per Package Install Time by Fixture"
47
+ variationData = { perPackageVariationData }
48
48
packageManagers = { packageManagers }
49
49
colors = { colors }
50
50
chartData = { chartData }
51
- isPerPackage = { false }
51
+ isPerPackage = { true }
52
52
/>
53
53
54
54
< VariationChart
55
- title = "Per Package Install Time by Fixture"
56
- variationData = { perPackageVariationData }
55
+ title = "Total Install Time by Fixture"
56
+ variationData = { totalVariationData }
57
57
packageManagers = { packageManagers }
58
58
colors = { colors }
59
59
chartData = { chartData }
60
- isPerPackage = { true }
60
+ isPerPackage = { false }
61
61
/>
62
62
63
63
< div className = "space-y-8" >
Original file line number Diff line number Diff line change 1
- import { RouterProvider , createBrowserRouter } from "react-router" ;
1
+ import { RouterProvider , createHashRouter } from "react-router" ;
2
2
import App from "@/app" ;
3
3
import { VariationPage } from "@/components/variation" ;
4
4
import type { RouteObject } from "react-router" ;
@@ -16,6 +16,6 @@ export const routes: RouteObject[] = [
16
16
} ,
17
17
] ;
18
18
19
- const router = createBrowserRouter ( routes ) ;
19
+ const router = createHashRouter ( routes ) ;
20
20
21
21
export const Router = ( ) => < RouterProvider router = { router } /> ;
You can’t perform that action at this time.
0 commit comments