Skip to content

Commit 0c27f6e

Browse files
committed
fix(getcloser): modify text infos
1 parent 6184bf4 commit 0c27f6e

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

β€Žgetcloser/frontend/src/app/pages/Page1.tsxβ€Ž

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ export default function Page1() {
2424
});
2525

2626
if (!authResponse.ok) {
27+
if (authResponse.status === 404) {
28+
alert('λ“±λ‘λ˜μ§€ μ•Šμ€ 이메일 μž…λ‹ˆλ‹€.');
29+
return;
30+
}
2731
throw new Error(`HTTP error! status: ${authResponse.status}`);
2832
}
2933

β€Žgetcloser/frontend/src/app/pages/Page2.tsxβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ const CreateTeamView = ({
107107
<div className="container mx-auto p-4">
108108
<Modal
109109
title="λ―Έμ…˜ μ†Œκ°œ"
110-
content={('1. μ°Έκ°€μžλ“€μ˜ μ½”λ“œλ₯Ό λͺ¨μœΌμ„Έμš”!\n μ½”λ“œλŠ” μœ„μ— κ°œμΈλ³„ λ‹€λ₯Έ μ½”λ“œκ°€ μžˆμŠ΅λ‹ˆλ‹€.\n2. 5λͺ…이 ν•¨κ»˜ 문제 풀기에 λ„μ „ν•˜μ„Έμš”!\n (팁! λ¬Έμ œλŠ” νŒ€μ›λ“€κ³Ό κ΄€λ ¨λœ λ¬Έμ œκ°€ λ‚˜μ˜΅λ‹ˆλ‹€.)\n3. 성곡 μ‹œ λΆ€μŠ€ λ°©λ¬Έν•΄μ£Όμ„Έμš”.\n 성곡 선물을 λ“œλ¦½λ‹ˆλ‹€.')}
110+
content={(`1. νŒ€μ„ λͺ¨μœΌμ„Έμš”! νŒ€μ› μ½”λ“œλŠ” 이름 μ˜†μ— μžˆλŠ” 숫자 μž…λ‹ˆλ‹€.<br/>2. ${TEAM_SIZE}λͺ…이 ν•¨κ»˜ 문제 풀기에 λ„μ „ν•˜μ„Έμš”! (팁! λ¬Έμ œλŠ” νŒ€μ›λ“€κ³Ό κ΄€λ ¨λœ λ¬Έμ œκ°€ λ‚˜μ˜΅λ‹ˆλ‹€.)<br/>3. 성곡 μ‹œ λΆ€μŠ€ λ°©λ¬Έν•΄μ£Όμ„Έμš”. κΈ°λ…ν’ˆμ„ λ“œλ¦½λ‹ˆλ‹€.`)}
111111
onConfirm={handleConfirm}
112112
onDoNotShowAgain={handleDoNotShowAgain}
113113
isOpen={showModal}

0 commit comments

Comments
Β (0)