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}`