From 31486b1320525c09f84db0a1fd31a4f740cc0a1c Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Wed, 11 May 2022 14:55:40 -0500 Subject: [PATCH] Link various sign up buttons to /signup --- app/soapbox/features/ui/components/navbar.tsx | 2 +- app/soapbox/features/ui/components/panels/sign-up-panel.tsx | 2 +- app/soapbox/features/ui/components/unauthorized_modal.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/soapbox/features/ui/components/navbar.tsx b/app/soapbox/features/ui/components/navbar.tsx index 25085f6d7..27b5f91dc 100644 --- a/app/soapbox/features/ui/components/navbar.tsx +++ b/app/soapbox/features/ui/components/navbar.tsx @@ -85,7 +85,7 @@ const Navbar = () => { {!singleUserMode && ( - )} diff --git a/app/soapbox/features/ui/components/panels/sign-up-panel.tsx b/app/soapbox/features/ui/components/panels/sign-up-panel.tsx index 4cabf17e8..cafcdc5c4 100644 --- a/app/soapbox/features/ui/components/panels/sign-up-panel.tsx +++ b/app/soapbox/features/ui/components/panels/sign-up-panel.tsx @@ -23,7 +23,7 @@ const SignUpPanel = () => { - diff --git a/app/soapbox/features/ui/components/unauthorized_modal.js b/app/soapbox/features/ui/components/unauthorized_modal.js index cf2c4d79e..ea32abca6 100644 --- a/app/soapbox/features/ui/components/unauthorized_modal.js +++ b/app/soapbox/features/ui/components/unauthorized_modal.js @@ -102,7 +102,7 @@ class UnauthorizedModal extends ImmutablePureComponent { onRegister = (e) => { e.preventDefault(); - this.props.history.push('/'); + this.props.history.push('/signup'); this.onClickClose(); }