diff --git a/react/src/components/dashboard/sendCoin/sendCoin.render.js b/react/src/components/dashboard/sendCoin/sendCoin.render.js
index 0d6f5e8..f16b6f9 100644
--- a/react/src/components/dashboard/sendCoin/sendCoin.render.js
+++ b/react/src/components/dashboard/sendCoin/sendCoin.render.js
@@ -363,7 +363,12 @@ export const SendRender = function() {
{ translate('API.ERROR_SM') }
- { this.state.lastSendToResponse.result }
+ { (this.state.lastSendToResponse.result.toLowerCase().indexOf('decode error') > -1) &&
+ Your history contains shielded transactions(z).
Please move funds to another transparent address in order to use Lite mode.
+ }
+ { this.state.lastSendToResponse.result.toLowerCase().indexOf('decode error') === -1 &&
+ { this.state.lastSendToResponse.result }
+ }
{ this.props.ActiveCoin.mode === 'spv' &&
this.state.lastSendToResponse.raw &&
this.state.lastSendToResponse.raw.txid &&
diff --git a/react/src/components/login/login.render.js b/react/src/components/login/login.render.js
index 5d791ab..ee5697f 100644
--- a/react/src/components/login/login.render.js
+++ b/react/src/components/login/login.render.js
@@ -201,8 +201,7 @@ const LoginRender = function() {