diff --git a/components/products/github-offboarding.js b/components/products/github-offboarding.js index 64169f3..1e59f33 100644 --- a/components/products/github-offboarding.js +++ b/components/products/github-offboarding.js @@ -1,21 +1,8 @@ 'use client' -import { useState, useEffect } from 'react' import OffboardingAnimation from '@/components/animations/offboarding-anim' export default function GitHubOffboarding({ showTitle = true, compact = false }) { - const [waitlistUrl, setWaitlistUrl] = useState(null) - - useEffect(() => { - if (typeof window !== 'undefined') { - const returnUri = encodeURIComponent( - `${window.location.origin}${window.location.pathname}#github-offboarding` - ) - setWaitlistUrl( - `https://wallet.hello.coop/waitlist?waitlist_label=GitHub+Offboarding&return_uri=${returnUri}` - ) - } - }, []) return (