diff --git a/src/app/WardrobePage/support/ItemLayerSupportUploadModal.js b/src/app/WardrobePage/support/ItemLayerSupportUploadModal.js index 10e72900..082c58d5 100644 --- a/src/app/WardrobePage/support/ItemLayerSupportUploadModal.js +++ b/src/app/WardrobePage/support/ItemLayerSupportUploadModal.js @@ -255,13 +255,17 @@ function ItemLayerSupportReviewStep({ imageWithAlphaUrl, numWarnings }) { return Generating image…; } + const ratioBad = numWarnings / (600 * 600); + const ratioGood = 1 - ratioBad; + return ( <> Step 3: Does this look correct? If so, let's upload it! - (Generated with {numWarnings} warnings.) + ({Math.floor(ratioGood * 10000) / 100}% match,{" "} + {Math.floor(ratioBad * 10000) / 100}% mismatch.)