mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-05-22 09:36:58 +00:00
Fix missing
This commit is contained in:
parent
4cb66a1193
commit
63d52bd2bd
@ -1,6 +1,7 @@
|
||||
import {
|
||||
FC,
|
||||
KeyboardEvent,
|
||||
useCallback,
|
||||
useContext,
|
||||
useEffect,
|
||||
useMemo,
|
||||
|
@ -98,7 +98,9 @@ export const WrapperUserAction = ({ children, address, name, disabled }) => {
|
||||
justifyContent: 'flex-start',
|
||||
}}
|
||||
>
|
||||
{t('core:message.message', { postProcess: 'capitalizeFirstChar' })}
|
||||
{t('core:message.message', {
|
||||
postProcess: 'capitalizeFirstChar',
|
||||
})}
|
||||
</Button>
|
||||
|
||||
{/* Option 2: Send QORT */}
|
||||
@ -209,7 +211,8 @@ const BlockUser = ({ address, name, handleClose }) => {
|
||||
)}
|
||||
{isAlreadyBlocked &&
|
||||
t('auth:action.unblock_name', { postProcess: 'capitalizeFirstChar' })}
|
||||
{isAlreadyBlocked === false && t('auth:action.block_name', { postProcess: 'capitalizeFirstChar' })}}
|
||||
{isAlreadyBlocked === false &&
|
||||
t('auth:action.block_name', { postProcess: 'capitalizeFirstChar' })}
|
||||
</Button>
|
||||
);
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user