Skip to content

Commit

Permalink
프로덕션 배포를 위해 머지합니다. (#135)
Browse files Browse the repository at this point in the history
* fix: 로그인 안내문구 수정

* chore: 서명 미업로드 설명 추가
  • Loading branch information
hynseok authored Apr 23, 2024
1 parent e5247b9 commit 273d12d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion src/app/prof/final/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ export default async function ProfessorFinalPage({

return (
<>
<PageHeader title="최종 판정" />
<PageHeader
title="최종 판정"
description="서명 파일 미 업로드 시 서명이 없는 보고서가 생성됩니다."
/>
<ReviewCard>
{!within && (
<PhaseReadyAlertRow title="최종 판정" start={formatTime(start)} end={formatTime(end)} />
Expand Down
5 changes: 4 additions & 1 deletion src/app/prof/review/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ export default async function ProfessorReviewPage({

return (
<>
<PageHeader title="논문 심사" />
<PageHeader
title="논문 심사"
description="서명 파일 미 업로드 시 서명이 없는 보고서가 생성됩니다."
/>
<ReviewCard>
{!within && (
<PhaseReadyAlertRow title="논문 심사" start={formatTime(start)} end={formatTime(end)} />
Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/LoginForm/LoginForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ function LoginForm() {
</Group>
<Text fw={500} ml={74}>
{type === "student" && "아이디는 학번, 비밀번호는 생년월일입니다."}
{type === "professor" && "아이디와 비밀번호는 내선번호입니다."}
{type === "professor" && "아이디는 킹고아이디, 비밀번호는 생년월일입니다."}
{type === "admin" && "관리자 계정은 행정실에 문의해주세요."}
</Text>
</Stack>
Expand Down

0 comments on commit 273d12d

Please sign in to comment.