Skip to content

Commit

Permalink
Fix : 프론트 문구 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
seonwoonam committed Dec 7, 2023
1 parent 02ecb03 commit 5c1d7c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ export default function MainPage() {
alert("이용이 종료되었습니다.");
setIsActive(false);
setNowUsingReservation(undefined);
window.location.reload();
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export default function EventInfo({ date, selectedTimes }: EventInfoProps) {
</div>
<div className={styles.guests}>
<div className={styles.add_guest}>
<input type="text" maxLength={50} placeholder="ID 입력" ref={guestText} />
<input type="text" maxLength={50} placeholder="학번 입력" ref={guestText} />
<button className={styles.manage_button_add} onClick={() => {
if (guestText.current) {
if (guestText.current.value.length === 0) {
Expand Down

0 comments on commit 5c1d7c2

Please sign in to comment.