Skip to content

Commit 1647d74

Browse files
committed
[fix] #193 카테고리 이동 메세지 문구 수정
1 parent 7d6688c commit 1647d74

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Projects/Feature/FeaturePokit/Sources/PokitLinkEditFeature.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,8 @@ private extension PokitLinkEditFeature {
229229
return .send(.delegate(.링크_편집_종료(items: [], type: type)))
230230
}
231231
/// 4. 링크이동을 했을 때 바텀 메세지 출력
232-
if case let .링크이동(categoryName) = type {
233-
state.linkPopup = .text(title: "\(categoryName)\n카테고리로 이동되었습니다.")
232+
if case .링크이동 = type {
233+
state.linkPopup = .text(title: "링크 이동이 완료되었습니다.")
234234
return .none
235235
}
236236

Projects/Feature/FeaturePokit/Sources/PokitRootFeature.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -543,8 +543,8 @@ private extension PokitRootFeature {
543543
}
544544
state.linkEdit = nil
545545

546-
if case let .링크이동(categoryName) = type {
547-
let text = "\(categoryName)\n카테고리로 이동되었습니다."
546+
if case .링크이동 = type {
547+
let text = "링크 이동이 완료되었습니다."
548548
return .send(.delegate(.linkPopup(text: text)))
549549
}
550550
return .none

0 commit comments

Comments
 (0)