Skip to content

Commit

Permalink
style/#108 :: 가독성 개선
Browse files Browse the repository at this point in the history
  • Loading branch information
hsw1920 committed Nov 26, 2024
1 parent beb04b8 commit 5e1dc68
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,10 @@ public final class EditPhotoRoomGuestViewModel {

return output.eraseToAnyPublisher()
}

}

// MARK: Sticker 관련
extension EditPhotoRoomGuestViewModel {
private func handleStickerViewDidTap(with stickerID: UUID) {
// MARK: 선택할 수 있는 객체인지 확인함
guard canInteractWithSticker(id: stickerID) else { return }
Expand Down Expand Up @@ -148,6 +151,7 @@ public final class EditPhotoRoomGuestViewModel {
}
}

// MARK: Frame 관련
extension EditPhotoRoomGuestViewModel {
private func toggleFrameType() {
let oldFrameImageType = frameTypeSubject.value
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,10 @@ public final class EditPhotoRoomHostViewModel {

return output.eraseToAnyPublisher()
}

}

// MARK: Sticker 관련
extension EditPhotoRoomHostViewModel {
private func handleStickerViewDidTap(with stickerID: UUID) {
// MARK: 선택할 수 있는 객체인지 확인함
guard canInteractWithSticker(id: stickerID) else { return }
Expand Down Expand Up @@ -149,6 +152,7 @@ public final class EditPhotoRoomHostViewModel {
}
}

// MARK: Frame 관련
extension EditPhotoRoomHostViewModel {
private func toggleFrameType() {
let oldFrameImageType = frameTypeSubject.value
Expand Down

0 comments on commit 5e1dc68

Please sign in to comment.