I have a function using window.print()
to print the current page.
I want to remove page URL when print page.
I want to remove the following URL
Here is my code, I want to remove it in this function
print() {
this.isPrint = true;
document.title = "";
setTimeout(() => {
window.print();
}, 0);
}