From 0656ef778bdadfb719ecaacaf39319e49abc976b Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Sun, 16 Feb 2025 10:24:50 -0600 Subject: [PATCH] Add temporary git logging --- src/admin/insights/AdminAppInsights.tsx | 2 ++ src/platforms/github.ts | 1 + 2 files changed, 3 insertions(+) diff --git a/src/admin/insights/AdminAppInsights.tsx b/src/admin/insights/AdminAppInsights.tsx index 313b5ada..d286c307 100644 --- a/src/admin/insights/AdminAppInsights.tsx +++ b/src/admin/insights/AdminAppInsights.tsx @@ -64,6 +64,8 @@ export default async function AdminAppInsights() { hasVercelBlobStorage, } = APP_CONFIGURATION; + console.log('codeMeta', { codeMeta }); + return ( { const getIsRepoForkedFromBase = async (params: RepoParams) => { const response = await fetch(getGitHubApiRepoUrl(params), FETCH_CONFIG); const data = await response.json(); + console.log('getIsRepoForkedFromBase', { data }); return ( Boolean(data.fork) && data.source?.full_name === `${TEMPLATE_REPO_OWNER}/${TEMPLATE_REPO_NAME}`