-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: 출석체크 에러 상태 반영 못하는 부분 수정 * fix: 출석 번호 trim 추가 * fix: 출석번호 textarea 줄바꿈 금지 * chore: 메타데이터 타이틀 수정 * design: 제출한 과제 확인 버튼 줄바꿈 안 되도록 수정 * chore: 오늘의 할 일 과제 박스 버튼 비활성화 상태 삭제 * chore: 오늘의 할 일 맨 마지막에 도달 시 캐러셀 버튼 안 보이도록 수정 * chore: 출석체크 모달에서 api fetch 대신 query parameter로 처리하도록 수정 * design: 출석번호 textfield placeholder ui 변경 * chore: 출석 성공한 경우 error 상태 리셋 * chore: 나의 과제 페이지로 이동 시에는 외부 탭으로 열리지 않도록 수정 * chore: 스터디 기본 정보 api 호출 시 cache 속성 no-store로 가져오게 수정
- Loading branch information
1 parent
ae4405a
commit bd12241
Showing
14 changed files
with
125 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { useSearchParams } from "next/navigation"; | ||
|
||
const useAttendanceCheckSearchParams = () => { | ||
const searchParams = useSearchParams(); | ||
|
||
const studyDetailId = searchParams.get("study-detail-id") || "0"; | ||
const studyName = searchParams.get("study-name"); | ||
const deadLine = searchParams.get("deadline") || ""; | ||
const currentWeek = searchParams.get("week"); | ||
|
||
return { studyDetailId, studyName, deadLine, currentWeek }; | ||
}; | ||
|
||
export default useAttendanceCheckSearchParams; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.