From 1677463556c0316f72d55c98983cf492d8b60af6 Mon Sep 17 00:00:00 2001 From: Doug Beardsley Date: Wed, 26 Aug 2020 17:25:45 -0400 Subject: [PATCH] Update safe transfer tooltip --- frontend/src/Frontend/UI/Transfer.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/Frontend/UI/Transfer.hs b/frontend/src/Frontend/UI/Transfer.hs index fa24de9d7..a86c50a10 100644 --- a/frontend/src/Frontend/UI/Transfer.hs +++ b/frontend/src/Frontend/UI/Transfer.hs @@ -273,7 +273,7 @@ uiGenericTransfer model cfg = do safeBtnCfg = def { _uiButtonCfg_disabled = (safeDisabled <$> transferInfo) - , _uiButtonCfg_title = constDyn $ Just "Safe transfers can be done when you are doing a transfer-create to the same chain. This makes it impossible for you to lose coins by sending it to the wrong public key. It requires a little extra work because the receiving account also has to sign the transaction." + , _uiButtonCfg_title = constDyn $ Just "Safe transfers make it impossible for you to lose coins by sending to the wrong public key when you are transferring to the same chain. They require a little extra work because the receiving account also has to sign the transaction." } safe <- confirmButton safeBtnCfg "Safe Transfer" -- _ <- confirmButton (def { _uiButtonCfg_disabled = (isNothing <$> transferInfo) }) "Quick Transfer"