diff --git a/src/components/Earn.tsx b/src/components/Earn.tsx index 857980a9..ddc32c8c 100644 --- a/src/components/Earn.tsx +++ b/src/components/Earn.tsx @@ -437,6 +437,7 @@ export default function Earn({ wallet }: EarnProps) { }, [currentWalletInfo]) const [moveToJarFidelityBondId, setMoveToJarFidelityBondId] = useState() + const [renewFidelityBondId, setRenewFidelityBondId] = useState() const startMakerService = useCallback( (values: EarnFormValues) => { @@ -645,18 +646,25 @@ export default function Earn({ wallet }: EarnProps) { return ( {actionsEnabled && ( -
-
- setMoveToJarFidelityBondId(fidelityBond.utxo)} - > - - {t('earn.fidelity_bond.existing.button_spend')} - -
+
+ setMoveToJarFidelityBondId(fidelityBond.utxo)} + > + + {t('earn.fidelity_bond.existing.button_spend')} + + setRenewFidelityBondId(fidelityBond.utxo)} + > + + {t('earn.fidelity_bond.existing.button_renew')} +
)} diff --git a/src/i18n/locales/en/translation.json b/src/i18n/locales/en/translation.json index 354ea557..700b1351 100644 --- a/src/i18n/locales/en/translation.json +++ b/src/i18n/locales/en/translation.json @@ -501,7 +501,8 @@ "label_locked_until": "Locked until", "label_expired_on": "Expired on", "label_address": "Timelocked address", - "button_spend": "Unlock Funds" + "button_spend": "Unlock Funds", + "button_renew": "Renew Bond" }, "move": { "title": "Unlock Funds",