-
Notifications
You must be signed in to change notification settings - Fork 1
feat: 시스템 알림 구현 #41
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
feat: 시스템 알림 구현 #41
Conversation
🔧 Electron Build Results✅ Windows
✅ macOS
This is an automated comment. |
choihooo
left a comment
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.
고생하셨어요!
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.
이거 노티피케이션 따로 파일 분리 못하려나요?
| useEffect(() => { | ||
| if (postureClass === 'bad') { | ||
| if (!badPostureStartTime.current) { | ||
| badPostureStartTime.current = Date.now(); | ||
| console.log('🐢 거북목 상태 시작'); | ||
| } | ||
| } else { | ||
| if (badPostureStartTime.current) { | ||
| console.log('✅ 정상 자세로 복귀'); | ||
| } | ||
| badPostureStartTime.current = null; | ||
| } | ||
| }, [postureClass]); |
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.
이 부분 6단계 적용하면서 바뀐거 있어서 수정해야할거 같아요
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.
이거 파일 이름 띄어쓰기 없이 가는게 더 좋을거 같습니다
No description provided.