TF-2116 Remove log message unnecessary

(cherry picked from commit 5046f4895a966ff33c91c4ecd6238c99529b5dfa)
This commit is contained in:
dab246
2023-09-12 11:55:54 +07:00
committed by Dat H. Pham
parent 56fac29e55
commit 3ac12ff258
6 changed files with 2 additions and 28 deletions
@@ -123,8 +123,6 @@ class _HtmlContentViewerOnWebState extends State<HtmlContentViewerOnWeb> {
function handleOnClickLink(e) {
let link = e.target;
let textContent = e.target.textContent;
console.log("handleOnClickLink: " + link);
console.log("handleOnClickLink: " + textContent);
if (link && isValidMailtoLink(link)) {
window.parent.postMessage(JSON.stringify({"view": "$createdViewId", "type": "toDart: OpenLink", "url": "" + link}), "*");
e.preventDefault();