fix: repeated words on tooltip and variable simplification
This commit is contained in:
parent
c786f5fd6e
commit
cace34d8fe
1 changed files with 4 additions and 5 deletions
|
|
@ -150,7 +150,7 @@ const Blacklist = () => {
|
|||
const complianceConfig =
|
||||
configData?.config && fromNamespace('compliance')(configData.config)
|
||||
|
||||
const rejectAddressReuse = complianceConfig?.rejectAddressReuse ?? false
|
||||
const rejectAddressReuse = !!complianceConfig?.rejectAddressReuse
|
||||
|
||||
const enablePaperWalletOnly = !!complianceConfig?.enablePaperWalletOnly
|
||||
|
||||
|
|
@ -252,10 +252,9 @@ const Blacklist = () => {
|
|||
<Label2>{enablePaperWalletOnly ? 'On' : 'Off'}</Label2>
|
||||
<HoverableTooltip width={304}>
|
||||
<P>
|
||||
The "Enable paper wallet (only)" option means that all only
|
||||
paper wallets paper wallets will be printed for users, and
|
||||
they won't be permitted to scan an address from their own
|
||||
wallet.
|
||||
The "Enable paper wallet (only)" option means that only paper
|
||||
wallets will be printed for users, and they won't be permitted
|
||||
to scan an address from their own wallet.
|
||||
</P>
|
||||
</HoverableTooltip>
|
||||
</Box>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue