From 524b0aee361c5afc997cc7f13076691cc8a47710 Mon Sep 17 00:00:00 2001 From: CJY Date: Fri, 15 Mar 2024 16:32:10 +0900 Subject: [PATCH] =?UTF-8?q?Feat:=20console=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/apis/mypage.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/apis/mypage.ts b/src/apis/mypage.ts index ae5434c..6123606 100644 --- a/src/apis/mypage.ts +++ b/src/apis/mypage.ts @@ -23,6 +23,7 @@ export const getAssignments = () => { const data = axios .get(`https://notion-api.splitbee.io/v1/table/${process.env.NEXT_PUBLIC_NOTION_DATABASE_ID}`) .then((res) => res.data); + console.log(data); return data; };