diff --git a/src/components/Embeds/VideoPlayer.tsx b/src/components/Embeds/VideoPlayer.tsx index 5bcf181..958b2ad 100644 --- a/src/components/Embeds/VideoPlayer.tsx +++ b/src/components/Embeds/VideoPlayer.tsx @@ -1,6 +1,7 @@ import { FC, KeyboardEvent, + useCallback, useContext, useEffect, useMemo, diff --git a/src/components/WrapperUserAction.tsx b/src/components/WrapperUserAction.tsx index f3f21ee..591c200 100644 --- a/src/components/WrapperUserAction.tsx +++ b/src/components/WrapperUserAction.tsx @@ -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', + })} {/* 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' })} ); };