From 63d52bd2bdde95ca3e59f5fadae82c26f5a11bac Mon Sep 17 00:00:00 2001 From: Nicola Benaglia Date: Tue, 20 May 2025 21:58:07 +0200 Subject: [PATCH] Fix missing --- src/components/Embeds/VideoPlayer.tsx | 1 + src/components/WrapperUserAction.tsx | 7 +++++-- 2 files changed, 6 insertions(+), 2 deletions(-) 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' })} ); };