Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
shunkakinoki committed Nov 7, 2021
1 parent 572c283 commit 8bc6ba6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Product/Product.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Page } from "@notionhq/client/build/src/api-types";
import type { GetPageResponse } from "@notionhq/client/build/src/api-endpoints";
import clsx from "clsx";
import Image from "next/image";
import type { FC } from "react";
Expand All @@ -9,7 +9,7 @@ import { ProductCard } from "@/components/Product/ProductCard";

export type Props = {
isPartial?: boolean;
database: Page[];
database: GetPageResponse[];
};

export const Product: FC<Props> = ({ isPartial = false, database }) => {
Expand Down

0 comments on commit 8bc6ba6

Please sign in to comment.