export private key on devmode

This commit is contained in:
2025-05-09 01:20:59 +03:00
parent eeb66f4fa5
commit ce9988dd73
5 changed files with 152 additions and 5 deletions

View File

@@ -6,6 +6,7 @@ import { getBaseApiReact } from '../App';
import '../styles/CoreSyncStatus.css';
import { useTheme } from '@mui/material';
import { useTranslation } from 'react-i18next';
import { manifestData } from '../ExtStates/NotAuthenticated';
export const CoreSyncStatus = () => {
const [nodeInfos, setNodeInfos] = useState({});
@@ -75,7 +76,9 @@ export const CoreSyncStatus = () => {
: '';
let imagePath = syncingImg;
let message = t('core:status.synchronizing', { postProcess: 'capitalize' });
let message = t('core:message.status.synchronizing', {
postProcess: 'capitalize',
});
if (isMintingPossible && !isUsingGateway) {
imagePath = syncedMintingImg;
@@ -140,6 +143,10 @@ export const CoreSyncStatus = () => {
{isUsingGateway?.toString()}
</span>
</h4>
<h4 className="lineHeight">
{t('core:ui.version')}:{' '}
<span style={{ color: '#03a9f4' }}>{manifestData.version}</span>
</h4>
</div>
</div>
);