diff --git a/components/wizard/steps/review-step.tsx b/components/wizard/steps/review-step.tsx
index f709a30..b1176dd 100644
--- a/components/wizard/steps/review-step.tsx
+++ b/components/wizard/steps/review-step.tsx
@@ -290,10 +290,12 @@ export function ReviewStep({
return opt?.label ?? environment.frameGenMethod
})()
+ const totalScreenshots = (existingScreenshots?.length ?? 0) + (screenshotFiles?.length ?? 0)
const canUploadMore =
- (!screenshotFiles || screenshotFiles.length < 2) &&
+ totalScreenshots < 2 &&
submitPhase !== "uploading" &&
submitPhase !== "saving"
+ const showExistingRemove = totalScreenshots >= 2
return (
@@ -559,14 +561,16 @@ export function ReviewStep({
draggable={false}
/>
-
+ {showExistingRemove && (
+
+ )}
Existing ยท #{ss.orderIndex + 1}