diff --git a/native/account/logged-out-modal.react.js b/native/account/logged-out-modal.react.js --- a/native/account/logged-out-modal.react.js +++ b/native/account/logged-out-modal.react.js @@ -508,28 +508,49 @@ ); } else if (this.state.mode === 'prompt') { const opacityStyle = { opacity: this.buttonOpacity }; - buttons = ( - - - {siweButton} + + const registerButtons = []; + registerButtons.push( + + + Register + + , + ); + if (__DEV__) { + registerButtons.push( - Sign in + Register - + , + ); + } + + buttons = ( + + + {siweButton} - Register + Sign in + {registerButtons} ); } else if (this.state.mode === 'loading') { @@ -636,6 +657,7 @@ paddingLeft: 18, paddingRight: 18, paddingTop: 14, + flex: 1, }, buttonContainer: { bottom: 0, @@ -657,6 +679,9 @@ classicAuthButtonText: { color: 'whiteText', }, + registerButtons: { + flexDirection: 'row', + }, container: { backgroundColor: 'transparent', flex: 1,