diff --git a/src/admin/insights/AdminAppInsights.tsx b/src/admin/insights/AdminAppInsights.tsx index d286c307..313b5ada 100644 --- a/src/admin/insights/AdminAppInsights.tsx +++ b/src/admin/insights/AdminAppInsights.tsx @@ -64,8 +64,6 @@ export default async function AdminAppInsights() { hasVercelBlobStorage, } = APP_CONFIGURATION; - console.log('codeMeta', { codeMeta }); - return ( { const getIsRepoForkedFromBase = async (params: RepoParams) => { const data = await fetchGitHub(getGitHubApiRepoUrl(params)); - console.log('getIsRepoForkedFromBase', { data }); return ( Boolean(data.fork) && data.source?.full_name === `${TEMPLATE_REPO_OWNER}/${TEMPLATE_REPO_NAME}`