We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e81e51 commit 859e5c4Copy full SHA for 859e5c4
src/pages/ErrorPage/index.tsx
@@ -28,14 +28,14 @@ const ErrorPage = () => {
28
return (
29
<div className="error-page-container">
30
<div className="error-content">
31
- <h1>오류 발생!</h1>
+ <h1>ERROR!</h1>
32
{/* Dynamic error message if provided */}
33
{errorMessage !== '알 수 없는 오류가 발생했습니다.' && (
34
<p className="error-message">{errorMessage}</p>
35
)}
36
{/* Static messages as requested */}
37
- <p>구글 로그인은 @snu.ac.kr 도메인만 지원됩니다</p>
38
- <p>정지 유저는 정지가 풀릴 때까지 서비스 이용이 불가합니다</p>
+ <p>로그인은 @snu.ac.kr 도메인만 지원됩니다</p>
+ <p>정지된 유저는 정지가 풀릴 때까지 서비스 이용이 불가합니다</p>
39
<button onClick={handleGoHome} className="home-button">
40
홈으로
41
</button>
0 commit comments