diff --git a/src/components/CoreSyncStatus.tsx b/src/components/CoreSyncStatus.tsx index 9b5bd29..6cdbeae 100644 --- a/src/components/CoreSyncStatus.tsx +++ b/src/components/CoreSyncStatus.tsx @@ -4,7 +4,7 @@ import syncedMintingImg from '../assets/syncStatus/synced_minting.webp'; import syncingImg from '../assets/syncStatus/syncing.webp'; import { getBaseApiReact } from '../App'; import '../styles/CoreSyncStatus.css'; -import { useTheme } from '@mui/material'; +import { Box, useTheme } from '@mui/material'; import { useTranslation } from 'react-i18next'; import { manifestData } from './NotAuthenticated'; @@ -106,7 +106,7 @@ export const CoreSyncStatus = () => { } return ( -
{ /> -
{ {t('core:ui.version', { postProcess: 'capitalizeFirstChar' })}:{' '} {manifestData.version} -
-
+ + ); }; - return
{renderSyncStatusIcon()}
; + return {renderSyncStatusIcon()}; };