Open GorvGoyl opened 2 years ago
This isn't refined enough for me to try making a code modification, but I made a small Chrome bookmarklet as a workaround. Maybe you could benefit too. Make a chrome bookmark, and in the URL paste one of these two snippets:
To move the comments over so they don't overlap the text
javascript:(() => document.querySelectorAll('.notion-margin-discussion-item').forEach(e => e.style.transform = "translateX(150px)"))();
To hide the comments entirely
javascript:(() => document.querySelectorAll('.notion-margin-discussion-item').forEach(e => e.style.display = "none"))();
Then when you open a notion doc with comments, click on the bookmark to fix them. You may need to click on the bookmark again after opening/closing the outline or navigating within the page.