aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/docs/components/Authors.tsx
diff options
context:
space:
mode:
author简律纯 <i@jyunko.cn>2023-07-09 17:58:22 +0800
committer简律纯 <i@jyunko.cn>2023-07-09 17:58:22 +0800
commit8b09ebd2bf4c529df728925b77cd56d56a265da8 (patch)
treec20008e188e5ee5448f28eafe401b84f5062a0e6 /docs/components/Authors.tsx
parent7417b47a10bcecd7feda64dac7eeb0de135e360d (diff)
downloadHydroRoll-8b09ebd2bf4c529df728925b77cd56d56a265da8.tar.gz
HydroRoll-8b09ebd2bf4c529df728925b77cd56d56a265da8.zip
😫
Diffstat (limited to 'docs/components/Authors.tsx')
-rw-r--r--docs/components/Authors.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/components/Authors.tsx b/docs/components/Authors.tsx
index 634bd90..0623440 100644
--- a/docs/components/Authors.tsx
+++ b/docs/components/Authors.tsx
@@ -1,10 +1,10 @@
import { Avatar } from "./Avatar";
import cn from "classnames";
-import TURBO_TEAM from "../content/team";
+import HYDROROLL_TEAM from "../content/team";
import type { Author } from "../content/team";
export function Authors({ authors }: { authors: Array<Author> }) {
- const validAuthors = authors.filter((author) => TURBO_TEAM[author]);
+ const validAuthors = authors.filter((author) => HYDROROLL_TEAM[author]);
return (
<div className="w-full border-b border-gray-400 authors border-opacity-20">
<div
@@ -14,7 +14,7 @@ export function Authors({ authors }: { authors: Array<Author> }) {
)}
>
{validAuthors.map((username) => (
- <Avatar key={username} {...TURBO_TEAM[username]} />
+ <Avatar key={username} {...HYDROROLL_TEAM[username]} />
))}
</div>
</div>