Fix `null` signUp URL handling from #25014 (#25108)

pull/25110/head
Renaud Chaput 2 years ago committed by GitHub
parent 7336f3648b
commit 40b948a1fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -21,7 +21,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) => ({

Loading…
Cancel
Save