Skip to content

Commit e67b12c

Browse files
committed
removed unused logs
1 parent ec55033 commit e67b12c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Sources/RichEditorSwiftUI/UI/Context/RichEditorState+Link.swift

-3
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,17 @@ extension RichEditorState {
1313
alertController.showAlert(
1414
title: "Want to remove link", message: "It will remove link",
1515
onOk: { [weak self] in
16-
print("==== ok pressed for removal of link")
1716
guard let self else { return }
1817
self.updateStyle(style: .link(self.link))
1918
},
2019
onCancel: {
21-
print("==== canceled link")
2220
return
2321
})
2422
} else {
2523
alertController.showAlert(
2624
title: "Enter url", message: "", placeholder: "Enter link",
2725
defaultText: "",
2826
onTextChange: { text in
29-
print("==== text updated with \(text)")
3027
},
3128
completion: { [weak self] finalText in
3229
self?.updateStyle(style: .link(finalText))

0 commit comments

Comments
 (0)