From bde0ea61518a8d2089793e505b276cbad7e3c46e Mon Sep 17 00:00:00 2001 From: KimJinWooDa <76438011+KimJinWooDa@users.noreply.github.com> Date: Sun, 10 Dec 2023 21:08:01 +0900 Subject: [PATCH] =?UTF-8?q?[feat]=20=EB=94=94=ED=85=8C=EC=9D=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. Email Button - placeholder 2. ChatList alt 추가 --- src/Components/Auth/Signin/EmailButton.js | 4 ++-- src/Pages/Main/ChatList.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Components/Auth/Signin/EmailButton.js b/src/Components/Auth/Signin/EmailButton.js index 0781612..e79483a 100644 --- a/src/Components/Auth/Signin/EmailButton.js +++ b/src/Components/Auth/Signin/EmailButton.js @@ -33,7 +33,7 @@ function EmailButton({ setWarningMessage(errorResponse.error); } } catch (error) { - setWarningMessage('${error.response.data.error}'); + setWarningMessage(`${error.response.data.error}`); } }; @@ -51,7 +51,7 @@ function EmailButton({ type="text" value={verifyNum} onChange={onValueChange} - placeholder="Verification Number" + placeholder="인증 번호" className="email-verification-input" /> <input diff --git a/src/Pages/Main/ChatList.js b/src/Pages/Main/ChatList.js index d4831a7..619e5e6 100644 --- a/src/Pages/Main/ChatList.js +++ b/src/Pages/Main/ChatList.js @@ -59,7 +59,7 @@ function ChatList() { onClick={() => setShowPopup(true)} style={{ background: "transparent", border: "none" }} > - <img src={AddChatIcon} height={"30px"} /> + <img src={AddChatIcon} alt="Add" height={"30px"} /> </button> </div> -- GitLab