diff options
| author | 2023-07-08 15:30:56 +0800 | |
|---|---|---|
| committer | 2023-07-08 15:30:56 +0800 | |
| commit | 109c28468b3266cf9815e63ce135f134b384d781 (patch) | |
| tree | 504567493b5770fbad61239e65253e11a5629d9e /docs/components/pages/TRPG-home/PackBenchmarks.tsx | |
| parent | 13cc48aba48ee09b883945ed3ecc8ddb1bfb4711 (diff) | |
| download | HydroRoll-109c28468b3266cf9815e63ce135f134b384d781.tar.gz HydroRoll-109c28468b3266cf9815e63ce135f134b384d781.zip | |
/🦴FIX
Diffstat (limited to 'docs/components/pages/TRPG-home/PackBenchmarks.tsx')
| -rw-r--r-- | docs/components/pages/TRPG-home/PackBenchmarks.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/components/pages/TRPG-home/PackBenchmarks.tsx b/docs/components/pages/TRPG-home/PackBenchmarks.tsx index 904fc62..0d3322c 100644 --- a/docs/components/pages/TRPG-home/PackBenchmarks.tsx +++ b/docs/components/pages/TRPG-home/PackBenchmarks.tsx @@ -1,4 +1,4 @@ -import { useState } from "react"; +import { useState } from "react"; import { FadeIn } from "../home-shared/FadeIn"; import { SectionHeader, SectionSubtext } from "../home-shared/Headings"; import { BenchmarksGraph } from "./PackBenchmarksGraph"; @@ -22,7 +22,7 @@ export interface BenchmarkData { export interface BenchmarkBar { label: string; key: keyof BenchmarkData; - turbo?: true; + core?: true; swc?: true; } @@ -30,7 +30,7 @@ export const DEFAULT_BARS: BenchmarkBar[] = [ { key: "HydroRoll", label: "HydroRoll水系", - turbo: true, + core: true, }, { key: "Shiki", @@ -50,7 +50,7 @@ export const HMR_BARS: BenchmarkBar[] = [ { key: "HydroRoll", label: "HydroRoll水系", - turbo: true, + core: true, }, { key: "Shiki", |