Skip to content
Snippets Groups Projects
Commit bde0ea61 authored by KimJinWooDa's avatar KimJinWooDa
Browse files

[feat] 디테일

1. Email Button - placeholder
2. ChatList alt 추가
parent db7f680e
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,7 @@ function EmailButton({ ...@@ -33,7 +33,7 @@ function EmailButton({
setWarningMessage(errorResponse.error); setWarningMessage(errorResponse.error);
} }
} catch (error) { } catch (error) {
setWarningMessage('${error.response.data.error}'); setWarningMessage(`${error.response.data.error}`);
} }
}; };
...@@ -51,7 +51,7 @@ function EmailButton({ ...@@ -51,7 +51,7 @@ function EmailButton({
type="text" type="text"
value={verifyNum} value={verifyNum}
onChange={onValueChange} onChange={onValueChange}
placeholder="Verification Number" placeholder="인증 번호"
className="email-verification-input" className="email-verification-input"
/> />
<input <input
......
...@@ -59,7 +59,7 @@ function ChatList() { ...@@ -59,7 +59,7 @@ function ChatList() {
onClick={() => setShowPopup(true)} onClick={() => setShowPopup(true)}
style={{ background: "transparent", border: "none" }} style={{ background: "transparent", border: "none" }}
> >
<img src={AddChatIcon} height={"30px"} /> <img src={AddChatIcon} alt="Add" height={"30px"} />
</button> </button>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment