diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 83d5d87..c14bf73 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -500,37 +500,34 @@ function App() { {/* Reference image display */}
- {referenceImages.length > 0 && ( -
-
- {inputMode === "image" && ( - Reference - )} - {inputMode === "video" && ( -
-
- {inputMode === "video" - ? "Original Video" - : "Original Screenshot"} -
+
+
+ {referenceImages.length > 1 ? ( +
+ {referenceImages.map((image, i) => ( + {`Reference + ))} +
+ ) : ( + + )}
- )} +
+ Original Screenshot{referenceImages.length > 1 ? "s" : ""} +
+

Console