From a7e367974aa4b43983e131329e62c67df383079c Mon Sep 17 00:00:00 2001 From: Morgan Brown Date: Tue, 3 Dec 2024 14:50:37 +0800 Subject: [PATCH] Add console.log for projects --- .../app/(app)/components/load-default-explore-page-data.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/routes/(pages)/app/(app)/components/load-default-explore-page-data.ts b/src/routes/(pages)/app/(app)/components/load-default-explore-page-data.ts index db730f37d..055295134 100644 --- a/src/routes/(pages)/app/(app)/components/load-default-explore-page-data.ts +++ b/src/routes/(pages)/app/(app)/components/load-default-explore-page-data.ts @@ -81,6 +81,9 @@ export default async function loadDefaultExplorePageData(f: typeof fetch) { f, ); + // eslint-disable-next-line no-console + console.log('fetchProjects', projectsRes); + return projectsRes.projects; };