Fix missing

This commit is contained in:
Nicola Benaglia 2025-05-20 21:58:07 +02:00
parent 4cb66a1193
commit 63d52bd2bd
2 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,7 @@
import {
FC,
KeyboardEvent,
useCallback,
useContext,
useEffect,
useMemo,

View File

@ -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>
);
};