Merge pull request #55 from nbenaglia/fix/missing-bracket-dependency

Fix missing bracket and dependency
This commit is contained in:
nico.benaz 2025-05-20 21:58:49 +02:00 committed by GitHub
commit 748a469598
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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>
);
};