From 9b9facb711302e0ca9547f928b71653c0cc11a50 Mon Sep 17 00:00:00 2001 From: PhilReact Date: Mon, 4 Nov 2024 16:43:24 +0200 Subject: [PATCH] fix img bug synced --- src/components/CoreSyncStatus.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/CoreSyncStatus.tsx b/src/components/CoreSyncStatus.tsx index 1461337..8de712e 100644 --- a/src/components/CoreSyncStatus.tsx +++ b/src/components/CoreSyncStatus.tsx @@ -65,12 +65,12 @@ export const CoreSyncStatus = () => { let imagePath = syncingImg; let message = `Synchronizing` if (isSynchronizing === true && syncPercent === 99) { - imagePath = syncedImg + imagePath = syncingImg } else if (isSynchronizing && !isMintingPossible && syncPercent === 100) { imagePath = syncingImg; message = `Synchronized (Not Minting)` } else if (!isSynchronizing && !isMintingPossible && syncPercent === 100) { - imagePath = syncingImg; + imagePath = syncedImg message = `Synchronized (Not Minting)` } else if (isSynchronizing && isMintingPossible && syncPercent === 100) { imagePath = syncedMintingImg;