Skip to content

[Release] 1.0.14 업데이트#31

Merged
mark77234 merged 2 commits intomainfrom
dev
Feb 28, 2026
Merged

[Release] 1.0.14 업데이트#31
mark77234 merged 2 commits intomainfrom
dev

Conversation

@mark77234
Copy link
Collaborator

업데이트 내용

  • 수정 기능 이슈 해결

Copilot AI review requested due to automatic review settings February 28, 2026 13:37
@mark77234 mark77234 merged commit 61b2a5e into main Feb 28, 2026
1 check passed
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Release 1.0.14 업데이트로, My Collection의 일기 수정(편집) 화면 전환/데이터 갱신 이슈를 완화하고 앱 버전 정보를 올리는 변경입니다.

Changes:

  • MyCollectionView에서 상세 화면 라우팅 시 초기 DiaryFeedModel을 함께 전달하도록 변경해, 목록 갱신 중에도 상세 화면이 안정적으로 렌더링되도록 개선
  • MyCollectionDiary의 저장(수정) 처리 흐름을 단순화(성공 여부 분기 로직 변경)
  • Xcode 프로젝트의 MARKETING_VERSION / CURRENT_PROJECT_VERSION를 1.0.14 / 14로 업데이트

Reviewed changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.

File Description
KillingPart/Views/Screens/Main/My/MyCollection/[diaryId]/MyCollectionDiary.swift 수정 저장 시 성공 분기 처리 로직 변경(현재 성공 시 후속 동작 없음)
KillingPart/Views/Screens/Main/My/MyCollection/MyCollectionView.swift Navigation 라우트에 initialDiary를 포함해 상세 화면 구성 안정화
KillingPart.xcodeproj/project.pbxproj 앱 버전/빌드 넘버 1.0.14 / 14로 업데이트

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

if isSuccess {
onDiaryChanged?(diaryId)
}
guard isSuccess else { return }
Copy link

Copilot AI Feb 28, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

submitEdit() 성공 여부를 guard로 확인하지만 성공 시 수행하는 동작이 현재 비어 있습니다. 성공 시 부모 화면 갱신을 위해 onDiaryChanged를 호출하려는 의도였다면 다시 호출을 추가하고, 의도가 아니라면 결과 값을 저장/guard 하는 부분을 제거해서 단순히 await viewModel.submitEdit()로 정리하는 편이 유지보수에 좋습니다.

Suggested change
guard isSuccess else { return }
guard isSuccess else { return }
onDiaryChanged?(diaryId)

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants