[Glitch] Fix `null` signUp URL handling from #25014

Port 9be9f4f5e2 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
lolsob-rspec
Renaud Chaput 2023-05-24 09:49:26 +02:00 committed by Claire
parent 8134d62112
commit b17b1827e7
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ const Account = connect(state => ({
));
const mapStateToProps = (state) => ({
signupUrl: state.getIn(['server', 'server', 'registrations', 'url'], '/auth/sign_up'),
signupUrl: state.getIn(['server', 'server', 'registrations', 'url'], null) || '/auth/sign_up',
});
const mapDispatchToProps = (dispatch) => ({