Skip to content

Commit

Permalink
chore: 안내문 게시
Browse files Browse the repository at this point in the history
  • Loading branch information
gahyuun committed Dec 5, 2024
1 parent 3d5ce15 commit aa26cb1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/(sub-page)/sign-in/components/update-instruction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ export default function UpdateInstruction() {
<div className="flex flex-col gap-4">
<div className="text-xl font-bold">업데이트 안내문</div>
<p className="text-gray-800 leading-6">
<span className="text-primary font-bold">졸업을 부탁해</span>가 2.0.2 버전으로 업데이트됨에 따라, 2024년 9월
3일 이전에 성적표를 업로드하신 모든 사용자께서는 성적표를 재업로드해 주시기 바랍니다.
<span className="text-primary font-bold">졸업을 부탁해</span>가 2.0.2 버전으로 업데이트됨에 따라, 2024년
12월 5일 이전에 성적표를 업로드하신 모든 사용자께서는 성적표를 재업로드해 주시기 바랍니다.
<br />
감사합니다.
</p>
Expand Down
3 changes: 1 addition & 2 deletions app/business/services/user/user.validation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,5 @@ export function isInitUser(x: UserInfoResponse | InitUserInfoResponse): x is Ini
}

export function isExpiredGradeUser(x: UserInfoResponse | InitUserInfoResponse): x is InitUserInfoResponse {
//return x.studentName !== null && x.takenCredit === 0 && x.totalCredit === 0;
return false;
return x.studentName !== null && x.takenCredit === 0 && x.totalCredit === 0;
}

0 comments on commit aa26cb1

Please sign in to comment.