Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bookmark after tx send - Closes #3991 #3992

Merged
merged 1 commit into from
Dec 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion i18n/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@
"Lisk Website": "Lisk Website",
"Lisk accounts on {{WalletModel}}": "Lisk accounts on {{WalletModel}}",
"Lisk counts your message in bytes, so keep in mind\n that the length of your message may vary in different languages.\n Different characters may consume a varying amount of bytes.": "Lisk counts your message in bytes, so keep in mind\n that the length of your message may vary in different languages.\n Different characters may consume a varying amount of bytes.",
"Lisk currently supports Ledger Nano S, Ledger Nano X, Trezor One and Trezor Model T wallets": "Lisk currently supports Ledger Nano S, Ledger Nano X, Trezor One and Trezor Model T wallets",
"Lisk currently supports Ledger Nano S, Ledger Nano X wallets": "Lisk currently supports Ledger Nano S, Ledger Nano X wallets",
"Lisk currently supports Ledger Nano S, Ledger Nano X, Trezor One and Trezor T wallets.": "Lisk currently supports Ledger Nano S, Ledger Nano X, Trezor One and Trezor T wallets.",
"Lisk has now been enhanced even further": "Lisk has now been enhanced even further",
"Lisk {{version}}": "Lisk {{version}}",
Expand Down Expand Up @@ -279,6 +279,7 @@
"Min": "Min",
"Minimize": "Minimize",
"Missed slot": "Missed slot",
"Modify recovery phrase derivation path": "Modify recovery phrase derivation path",
"More filters": "More filters",
"Multisignature account details": "Multisignature account details",
"Multisignatures": "Multisignatures",
Expand Down
2 changes: 1 addition & 1 deletion src/components/screens/send/status/status.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const TransactionStatus = ({
data={{
formAddress: rawTransaction.recipientAddress,
label: recipientAccount.data.dpos?.delegate?.username ?? '',
isDelegate: !!recipientAccount.data.dpos?.delegate,
isDelegate: !!recipientAccount.data.summary?.isDelegate,
}}
>
<PrimaryButton className={`${styles.btn} bookmark-btn`}>
Expand Down