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 = ;
- } else if (this.state.mode === 'log-in') {
+ if (this.state.mode === 'log-in') {
panel = (
);
+ let siwePanel;
+ if (this.state.mode === 'siwe') {
+ siwePanel = ;
+ }
+
const backgroundSource = { uri: splashBackgroundURI };
return (
@@ -570,6 +573,7 @@
{buttons}
+ {siwePanel}
);
}