Skip to content

Commit

Permalink
Fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
oBusk committed Mar 9, 2024
1 parent a3aa2c3 commit 6702f01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/[...parts]/_page/DiffIntro/PublishDate.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { type ComponentProps } from "react";
import { type ComponentPropsWithoutRef } from "react";
import ClientDate from "^/components/ClientDate";
import Skeleton from "^/components/ui/Skeleton";
import getVersionData from "^/lib/api/npm/getVersionData";
import { cx } from "^/lib/cva";
import type SimplePackageSpec from "^/lib/SimplePackageSpec";
import suspense from "^/lib/suspense";

export interface PublishDateProps extends ComponentProps<"div"> {
export interface PublishDateProps extends ComponentPropsWithoutRef<"div"> {
pkg: SimplePackageSpec;
}

Expand Down

0 comments on commit 6702f01

Please sign in to comment.