From 8bc6ba65fe548fc4f821c4b92a9e71c83031a32c Mon Sep 17 00:00:00 2001 From: Shun Kakinoki Date: Sun, 7 Nov 2021 16:19:55 -0500 Subject: [PATCH] chore: update --- src/components/Product/Product.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Product/Product.tsx b/src/components/Product/Product.tsx index 3a262dd6..c261cc8d 100644 --- a/src/components/Product/Product.tsx +++ b/src/components/Product/Product.tsx @@ -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"; @@ -9,7 +9,7 @@ import { ProductCard } from "@/components/Product/ProductCard"; export type Props = { isPartial?: boolean; - database: Page[]; + database: GetPageResponse[]; }; export const Product: FC = ({ isPartial = false, database }) => {