Removed commented out code

This commit is contained in:
Shefali 2025-03-05 11:32:17 -08:00
parent 32a0e15691
commit 9e68514b27

View File

@ -260,7 +260,6 @@ export default {
let existingContainer = this.$el.querySelector(`.${CONTAINER_CLASS}`); let existingContainer = this.$el.querySelector(`.${CONTAINER_CLASS}`);
if (existingContainer) { if (existingContainer) {
imageryContainer = existingContainer; imageryContainer = existingContainer;
// imageryContainer.style.maxWidth = `${containerWidth}px`;
} else { } else {
if (this.destroyImageryContainer) { if (this.destroyImageryContainer) {
this.destroyImageryContainer(); this.destroyImageryContainer();
@ -290,7 +289,6 @@ export default {
this.$refs.imageryHolder.appendChild(component.$el); this.$refs.imageryHolder.appendChild(component.$el);
imageryContainer = component.$el.querySelector(`.${CONTAINER_CLASS}`); imageryContainer = component.$el.querySelector(`.${CONTAINER_CLASS}`);
// imageryContainer.style.maxWidth = `${containerWidth}px`;
} }
return imageryContainer; return imageryContainer;