Page MenuHomePhabricator

D6008.id20044.diff
No OneTemporary

D6008.id20044.diff

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
@@ -481,9 +481,7 @@
);
}
- if (this.state.mode === 'siwe') {
- panel = <SIWEPanel />;
- } else if (this.state.mode === 'log-in') {
+ if (this.state.mode === 'log-in') {
panel = (
<LogInPanel
setActiveAlert={this.setActiveAlert}
@@ -556,6 +554,11 @@
</Animated.View>
);
+ let siwePanel;
+ if (this.state.mode === 'siwe') {
+ siwePanel = <SIWEPanel />;
+ }
+
const backgroundSource = { uri: splashBackgroundURI };
return (
<React.Fragment>
@@ -570,6 +573,7 @@
{buttons}
</KeyboardAvoidingView>
</SafeAreaView>
+ {siwePanel}
</React.Fragment>
);
}

File Metadata

Mime Type
text/plain
Expires
Mon, Oct 7, 4:09 AM (21 h, 41 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2252467
Default Alt Text
D6008.id20044.diff (892 B)

Event Timeline