Compare commits

..

No commits in common. "9a361c2db8e1b56f9782d597d99089145824c7dd" and "b42a018d8ed429dcaa85f444aba736bccd9b783a" have entirely different histories.

2 changed files with 2 additions and 3 deletions

View File

@ -58,8 +58,7 @@ export default async function RootLayout({ children }) {
pwdInitYn: session.pwdInitYn,
custCd: session.custCd,
isLoggedIn: session.isLoggedIn,
builderNo: session.builderNo,
custNm: session.custNm
builderNo: session.builderNo
}
}
if (!headerPathname.includes('/login') && !session.isLoggedIn) {

View File

@ -349,7 +349,7 @@ let fileCheck = false;
<tbody>
<tr>
<th>{getMessage('qna.list.header.regNm')}</th>
<td><input type="text" className="input-light" value={sessionState?.custNm || ''} readOnly /></td>
<td><input type="text" className="input-light" value={sessionState?.userNm || ''} readOnly /></td>
<th>E-Mail<span className="red">*</span></th>
<td ><input type="text" className="input-light" required
ref={qstMail}