Link various sign up buttons to /signup

This commit is contained in:
Alex Gleason
2022-05-11 14:55:40 -05:00
parent 64cce966a2
commit 31486b1320
3 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ const Navbar = () => {
</Button>
{!singleUserMode && (
<Button theme='primary' to='/' size='sm'>
<Button theme='primary' to='/signup' size='sm'>
<FormattedMessage id='account.register' defaultMessage='Sign up' />
</Button>
)}

View File

@ -23,7 +23,7 @@ const SignUpPanel = () => {
</Text>
</Stack>
<Button theme='primary' block to='/'>
<Button theme='primary' block to='/signup'>
<FormattedMessage id='account.register' defaultMessage='Sign up' />
</Button>
</Stack>

View File

@ -102,7 +102,7 @@ class UnauthorizedModal extends ImmutablePureComponent {
onRegister = (e) => {
e.preventDefault();
this.props.history.push('/');
this.props.history.push('/signup');
this.onClickClose();
}