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.
현재 구현은 커스텀 시간표를 저장할 때마다
isOnModifiedTimeTable설정을true로 변경합니다. 이로 인해 사용자가 의도적으로 이 기능을 비활성화했더라도, 시간표를 수정할 때마다 다시 활성화되어 사용자 경험을 해칠 수 있습니다. 예를 들어, 방학 중에 시간표 표시를 꺼놨는데, 개학을 대비해 시간표를 미리 수정하는 경우 원치 않게 시간표가 표시될 수 있습니다.이 설정을 자동으로 활성화하는 것은 사용자가 처음으로 커스텀 시간표를 설정할 때 한 번만 수행하는 것이 더 나은 사용자 경험을 제공할 수 있습니다. 예를 들어, 데이터베이스에 저장된 커스텀 시간표가 없을 때만 이 값을
true로 설정하는 방법을 고려해볼 수 있습니다.