diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb19ffde..403931df 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: NEXT_PUBLIC_SWEEPSTAKES_OWNER: "0x0724d0eb7b6d32AEDE6F9e492a5B1436b537262b" NEXT_PUBLIC_THIRDWEB_CLIENT_ID: ${{ secrets.NEXT_PUBLIC_THIRDWEB_CLIENT_ID }} NEXT_PUBLIC_THIRDWEB_SECRET_KEY: ${{ secrets.NEXT_PUBLIC_THIRDWEB_SECRET_KEY }} - NEXT_PUBLIC_PRIVY_CLIENT_ID: ${{secrets.NEXT_PUBLIC_PRIVY_CLIENT_ID}} + NEXT_PUBLIC_PRIVY_APP_ID: ${{secrets.NEXT_PUBLIC_PRIVY_APP_ID}} steps: - name: Checkout diff --git a/ui/components/layout/Sidebar/Navigation.ts b/ui/components/layout/Sidebar/Navigation.ts index 1b41b98b..ce9bccef 100644 --- a/ui/components/layout/Sidebar/Navigation.ts +++ b/ui/components/layout/Sidebar/Navigation.ts @@ -13,7 +13,7 @@ import { export const navigation = [ { - name: 'home', + name: 'Welcome', href: '/', icon: HomeIcon, }, @@ -41,7 +41,6 @@ export const navigation = [ name: 'Links', icon: FolderIcon, children: [ - { name: 'Homepage', href: 'https://moondao.com/' }, { name: 'Snapshot', href: 'https://snapshot.org/#/tomoondao.eth' }, { name: 'Documentation', href: 'https://moondao.com/docs/introduction' }, { name: 'Newsletter', href: 'https://moondao.ck.page/profile' }, diff --git a/ui/components/onboarding/OnboardingStageManager.tsx b/ui/components/onboarding/OnboardingStageManager.tsx index 050f8f08..c5aa1c86 100644 --- a/ui/components/onboarding/OnboardingStageManager.tsx +++ b/ui/components/onboarding/OnboardingStageManager.tsx @@ -79,7 +79,7 @@ export function OnboardingStageManager({ selectedChain }: any) { useEffect(() => { if (selectedLevel.price > 0) { - setStage(2) + setStage(1) } if (selectedLevel.price != 0) { @@ -115,7 +115,7 @@ export function OnboardingStageManager({ selectedChain }: any) { }, [selectedLevel.price, totalLocked, totalMooneyBalance, selectedChain]) useEffect(() => { - if (stage > 1) { + if (stage > 0) { setStage(0) } }, [address]) @@ -192,38 +192,6 @@ export function OnboardingStageManager({ selectedChain }: any) { ) } - - const StepZero = () => ( - -
-

- Welcome to MoonDAO -

-

{`MoonDAO is accelerating humanity’s multiplanetary future through better coordination. Want to build this future together? Get started by joining our community, and you’ll be onboarded in less than 5 minutes, even if you’re new to Web3. -`}

- -