From 96cbaaba1b1a20611a026207d1ddeff739a4f1f0 Mon Sep 17 00:00:00 2001 From: PhilReact Date: Fri, 4 Jul 2025 22:50:07 +0300 Subject: [PATCH] fix public node fix status --- src/components/CoreSyncStatus.tsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/components/CoreSyncStatus.tsx b/src/components/CoreSyncStatus.tsx index 1bf2221..bd44d91 100644 --- a/src/components/CoreSyncStatus.tsx +++ b/src/components/CoreSyncStatus.tsx @@ -83,8 +83,13 @@ export const CoreSyncStatus = () => { let message: string = ''; if (isUsingGateway) { - imagePath = syncingImg; - message = `${t('core:minting.status.no_status')}`; + if (isSynchronizing) { + imagePath = syncingImg; + message = `${t(`core:minting.status.synchronizing`, { percent: syncPercent, postProcess: 'capitalizeFirstChar' })} ${t('core:minting.status.not_minting')}`; + } else { + imagePath = syncedImg; + message = `${t(`core:minting.status.synchronized`, { percent: syncPercent, postProcess: 'capitalizeFirstChar' })} ${t('core:minting.status.not_minting')}`; + } } else if (isMintingPossible) { if (isSynchronizing) { imagePath = syncingImg;