-
- {!label
- ?
- : }
- {label ?? 'Checking'}
-
-
- );
-}
diff --git a/src/admin/github/GitHubForkStatusBadgeServer.tsx b/src/admin/github/GitHubForkStatusBadgeServer.tsx
deleted file mode 100644
index ab49eaca..00000000
--- a/src/admin/github/GitHubForkStatusBadgeServer.tsx
+++ /dev/null
@@ -1,60 +0,0 @@
-import GitHubForkStatusBadgeClient from './GitHubForkStatusBadgeClient';
-import {
- VERCEL_GIT_BRANCH,
- VERCEL_GIT_REPO_OWNER,
- VERCEL_GIT_REPO_SLUG,
- VERCEL_GIT_COMMIT_SHA,
-} from '@/app-core/config';
-import { getGitHubMetaWithFallback, getGitHubUrlRepo } from '.';
-
-export default async function GitHubForkStatusBadgeServer() {
- const owner = VERCEL_GIT_REPO_OWNER;
- const repo = VERCEL_GIT_REPO_SLUG;
- const branch = VERCEL_GIT_BRANCH;
- const commit = VERCEL_GIT_COMMIT_SHA;
-
- const {
- isForkedFromBase,
- isBaseRepo,
- isBehind,
- label,
- description,
- didError,
- } = await getGitHubMetaWithFallback({ owner, repo, branch, commit });
-
- const repoLink = (text: string) =>
-