Remove unnecessary log (#1498)

This commit is contained in:
Evan Simkowitz 2024-12-11 12:54:23 -08:00 committed by GitHub
parent 4070abadde
commit 4918737044
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -256,21 +256,6 @@ const TabBar = memo(({ workspace }: TabBarProps) => {
// Determine if the tab bar needs to be scrollable
const newScrollable = idealTabWidth * numberOfTabs > spaceForTabs;
console.log(
"tabbarWrapperWidth",
tabbarWrapperWidth,
"nonTabElementsWidth",
nonTabElementsWidth,
"idealTabWidth",
idealTabWidth,
"spaceForTabs",
spaceForTabs,
"newScrollable",
newScrollable,
"devLabelWidth",
devLabelWidth
);
// Apply the calculated width and position to all tabs
tabRefs.current.forEach((ref, index) => {
if (ref.current) {