added group promotions

This commit is contained in:
2024-11-14 06:46:53 +02:00
parent b154de8251
commit ff4c4bb8d8
6 changed files with 825 additions and 11 deletions

View File

@@ -64,7 +64,10 @@ export const CoreSyncStatus = ({imageSize, position}) => {
let imagePath = syncingImg;
let message = `Synchronizing`
if (isSynchronizing === true && syncPercent === 99) {
if (isMintingPossible && !isUsingGateway) {
imagePath = syncedMintingImg;
message = `${isSynchronizing ? 'Synchronizing' : 'Synchronized'} ${'(Minting)'}`
} else if (isSynchronizing === true && syncPercent === 99) {
imagePath = syncingImg
} else if (isSynchronizing && !isMintingPossible && syncPercent === 100) {
imagePath = syncingImg;