diff --git a/src/Components/Auth/Signin/EmailButton.js b/src/Components/Auth/Signin/EmailButton.js
index 07816129215c37b4d5a7af50e73807e903896bb3..e79483af765bd3e7f5668739aa2e7492163900ef 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 d4831a7d548c3a9dd5ee19f00aa5881e58dedd1e..619e5e67b42799798c5c08b7a8ff857c3b478da7 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>