Remove temp github logging

This commit is contained in:
Sam Becker 2025-02-16 11:21:20 -06:00
parent 29e752bc9b
commit 96d17ddeb8
2 changed files with 0 additions and 3 deletions

View File

@ -64,8 +64,6 @@ export default async function AdminAppInsights() {
hasVercelBlobStorage, hasVercelBlobStorage,
} = APP_CONFIGURATION; } = APP_CONFIGURATION;
console.log('codeMeta', { codeMeta });
return ( return (
<AdminAppInsightsClient <AdminAppInsightsClient
codeMeta={codeMeta} codeMeta={codeMeta}

View File

@ -103,7 +103,6 @@ export const getLatestBaseRepoCommitSha = async () => {
const getIsRepoForkedFromBase = async (params: RepoParams) => { const getIsRepoForkedFromBase = async (params: RepoParams) => {
const data = await fetchGitHub(getGitHubApiRepoUrl(params)); const data = await fetchGitHub(getGitHubApiRepoUrl(params));
console.log('getIsRepoForkedFromBase', { data });
return ( return (
Boolean(data.fork) && Boolean(data.fork) &&
data.source?.full_name === `${TEMPLATE_REPO_OWNER}/${TEMPLATE_REPO_NAME}` data.source?.full_name === `${TEMPLATE_REPO_OWNER}/${TEMPLATE_REPO_NAME}`