Remove console.log.

This commit is contained in:
Bryan Mauger 2023-09-22 12:53:07 -04:00
parent 73726af7a3
commit 9d19a98f9b

View file

@ -131,7 +131,6 @@ export default {
container.scrollTo({ top: 0, left: 0, behavior: "smooth" });
},
scrollToPageBottom() {
console.log("scroll to bottom");
const container = document.getElementsByClassName("page-container-grouped-styles")[0];
container.scrollTo({ top: container.scrollHeight, left: 0, behavior: "smooth" });
},