From 514545cf6526fecc1679f00aa69c3233353c2492 Mon Sep 17 00:00:00 2001 From: yjnoh Date: Wed, 4 Jun 2025 09:03:21 +0900 Subject: [PATCH] =?UTF-8?q?=EB=B3=B5=EC=82=AC=20=EB=A1=9C=EC=A7=81=20?= =?UTF-8?q?=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [작업내용] : 복사 로직 오류 수정 --- src/app/api/image/estimate-image-copy/route.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/api/image/estimate-image-copy/route.js b/src/app/api/image/estimate-image-copy/route.js index 5d8a6348..d7c80b13 100644 --- a/src/app/api/image/estimate-image-copy/route.js +++ b/src/app/api/image/estimate-image-copy/route.js @@ -28,7 +28,7 @@ export async function POST(req) { const isExistImage2 = await s3.send( new GetObjectCommand({ Bucket, - Key: `Drawing/${objectNo}_${planNo}_1.png`, + Key: `Drawing/${objectNo}_${planNo}_2.png`, }), )