From 4d5bbfe875ce7a87d3d78b1185687c9a3260655f Mon Sep 17 00:00:00 2001 From: basssy Date: Mon, 6 Jan 2025 09:43:51 +0900 Subject: [PATCH] =?UTF-8?q?=EB=AC=BC=EA=B1=B4=EB=AA=A9=EB=A1=9D=ED=99=94?= =?UTF-8?q?=EB=A9=B4=EC=97=90=EC=84=9C=20=20=EB=B3=B5=EC=82=AC=EA=B8=B0?= =?UTF-8?q?=EB=8A=A5=20=ED=99=95=EC=9D=B8=20=EC=BD=98=EC=86=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/management/Stuff.jsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/management/Stuff.jsx b/src/components/management/Stuff.jsx index 0ae7299b..65a8a2eb 100644 --- a/src/components/management/Stuff.jsx +++ b/src/components/management/Stuff.jsx @@ -42,9 +42,11 @@ export default function Stuff() { //그리드 내부 복사버튼 const copyNo = async (value) => { try { + console.log('value::::::::', value) await navigator.clipboard.writeText(value) alert(getMessage('stuff.detail.header.successCopy')) } catch (error) { + console.log('error::::::::::', error) alert(getMessage('stuff.detail.header.failCopy')) } }