REFACTOR Removing un ecessary console logs

This commit is contained in:
Nonimart 2025-09-30 11:46:49 +02:00
parent 3e80701081
commit 52db4fc6fa

View File

@ -29,6 +29,4 @@ function resetActiveToolbarButtons(): void {
function handleActiveTabContent(tab: string): void { function handleActiveTabContent(tab: string): void {
const contentWrapper = document.querySelector('.content-wrapper'); const contentWrapper = document.querySelector('.content-wrapper');
contentWrapper?.setAttribute('data-active-tab', tab); contentWrapper?.setAttribute('data-active-tab', tab);
console.log(tab);
console.log('contentWrapper');
} }