You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
on edge I had to add the following code to remove the "this is a preview" overlay
I added it to the remove-banner.js after it gets the document-wrapper element handle
var elementToRemove = document.querySelector('#document-wrapper > div:nth-child(2) > div._95f5f1767857._0838fb325c04');
if (elementToRemove) {
elementToRemove.parentNode.removeChild(elementToRemove);
}
The text was updated successfully, but these errors were encountered:
on edge I had to add the following code to remove the "this is a preview" overlay
I added it to the remove-banner.js after it gets the document-wrapper element handle
The text was updated successfully, but these errors were encountered: