-
Notifications
You must be signed in to change notification settings - Fork 0
[Fix] 알림페이지 디자인 반영 / 버그 일부 수정 #269
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
3d13185
fix: button:disabled global 설정 추가
Chiman2937 622a1dc
fix: axios interceptor - refresh 실패 시 명시적 logout 함수 호출
Chiman2937 3badeea
fix: formatDateTime - 서버 시간 / 클라이언트 시간 차이를 고려한 0초 전 출력 분기 추가
Chiman2937 9e42a09
fix: 알림 목록 queryKey에 params 객체 삭제
Chiman2937 e03f9de
fix: Notification Header - 모두 읽음 기능 추가
Chiman2937 85949d6
fix: SSE 수신 시 알림 목록 즉시 업데이트 되도록 수정
Chiman2937 ddcf88c
fix: 알림 페이지 무한 스크롤 기능 추가
Chiman2937 cbce84d
fix: 알림 목록 디자인 수정
Chiman2937 0660dac
fix: Header -읽지 않은 알림이 0개일 때 unReadCount가 표시되지 않도록 수정
Chiman2937 b383606
fix: mutateAsync await 추가
Chiman2937 76c89d6
fix: notification query key - params 객체 삭제 건 원복
Chiman2937 bf54014
Merge branch 'main' into chiyoung-fix/notification
Chiman2937 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -5,3 +5,7 @@ | |
| button { | ||
| cursor: pointer; | ||
| } | ||
|
|
||
| button:disabled { | ||
| cursor: not-allowed; | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: WeGo-Together/WeGo_FrontEnd
Length of output: 656
🏁 Script executed:
Repository: WeGo-Together/WeGo_FrontEnd
Length of output: 1367
🏁 Script executed:
Repository: WeGo-Together/WeGo_FrontEnd
Length of output: 2186
🏁 Script executed:
Repository: WeGo-Together/WeGo_FrontEnd
Length of output: 1533
logout()호출이 에러 처리 없이 사용자 리다이렉션을 차단할 수 있습니다.logout()은 API 요청을 수행하며 예외를 던질 수 있습니다. 현재 코드에서 이 호출이 try-catch로 보호되지 않으면, 예외 발생 시 60-69번 줄의 리다이렉션 로직이 실행되지 않아 사용자가 로그인 페이지로 이동하지 못합니다.try-catch로 감싸서 안전하게 처리하세요:
🤖 Prompt for AI Agents