From f9850f833fad28b330d3b6fe316b262642ca5fae Mon Sep 17 00:00:00 2001 From: qkrxogmla Date: Thu, 22 May 2025 16:47:29 +0900 Subject: [PATCH] =?UTF-8?q?=EC=97=94=ED=84=B0=EC=8B=9C=20=EB=A1=9C?= =?UTF-8?q?=EA=B7=B8=EC=9D=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/Login.jsx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/frontend/src/Login.jsx b/frontend/src/Login.jsx index 58f63b1..4690e4d 100644 --- a/frontend/src/Login.jsx +++ b/frontend/src/Login.jsx @@ -57,7 +57,14 @@ const Login = () => { return (
-
+
{ + if (e.key === "Enter" && name && password) { + handleLogin(); + } + }} + >

PIROCHECK

{ placeholder: "비밀번호", }, ]} - values={[name, password]} // InputBlock props 수정에 따라 추가 + values={[name, password]} onChange={handleChange} />