Skip to content

Commit a713513

Browse files
committed
Fix error for accessing key prop in PublishDate
1 parent f5ac973 commit a713513

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/app/[...parts]/_page/DiffIntro/PublishDate.tsx

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
import { type ComponentPropsWithoutRef } from "react";
21
import ClientDate from "^/components/ClientDate";
32
import Skeleton from "^/components/ui/Skeleton";
43
import getVersionData from "^/lib/api/npm/getVersionData";
54
import { cx } from "^/lib/cva";
65
import type SimplePackageSpec from "^/lib/SimplePackageSpec";
76
import suspense from "^/lib/suspense";
87

9-
export interface PublishDateProps extends ComponentPropsWithoutRef<"div"> {
8+
export interface PublishDateProps {
9+
className?: string;
1010
pkg: SimplePackageSpec;
1111
}
1212

1313
const shared = cx("my-1 flex h-5 items-center justify-center");
1414

15-
async function PublishDate({ pkg, className, ...props }: PublishDateProps) {
15+
async function PublishDate({ pkg, className }: PublishDateProps) {
1616
const versionData = await getVersionData(pkg);
1717

1818
const time = versionData[pkg.version]?.time ?? null;
@@ -21,7 +21,6 @@ async function PublishDate({ pkg, className, ...props }: PublishDateProps) {
2121
<ClientDate
2222
time={time}
2323
className={cx(shared, "cursor-help", className)}
24-
{...props}
2524
/>
2625
);
2726
}

0 commit comments

Comments
 (0)