metatron-open-seo/src/client/features/gsc/SelfHostedSetupWarning.tsx

16 lines
496 B
TypeScript

import { GoogleOAuthSetupWarning } from "@/client/features/integrations/GoogleOAuthSetupWarning";
import { GSC_SELF_HOSTED_SETUP_DOCS_URL } from "@/shared/gsc";
/**
* Shown in self-hosted deployments that haven't set GOOGLE_CLIENT_ID/SECRET yet
* — in both the Integrations card and the onboarding step.
*/
export function SelfHostedSetupWarning() {
return (
<GoogleOAuthSetupWarning
integrationName="Search Console"
docsUrl={GSC_SELF_HOSTED_SETUP_DOCS_URL}
/>
);
}