diff --git a/src/assets/text/text_es.js b/src/assets/text/text_es.js
index 2c4ada682c9922afa41ce05ffdbe110caec78341..0ea57679f18f3932e7b4fe63b7c519c8caa5306f 100644
--- a/src/assets/text/text_es.js
+++ b/src/assets/text/text_es.js
@@ -61,7 +61,7 @@ export default {
       appeared: "apareció en",
       singleStudy: `estudio`,
       multipleStudies: `estudios`,
-      dendroExplainer: `Haga clic en cada tema para ver los diferentes indicadores de riesgo estudiados en relación con la carencia de agua. Las líneas más gruesas del diagrama indican temas mejor estudiados. El número de estudios de cada indicador se muestra entre paréntesis. `
+      dendroExplainer: `Haga clic en cada tema para ver los diferentes indicadores de riesgo estudiados en relación con la carencia de agua. Las líneas más gruesas del diagrama indican temas mejor estudiados. El número de estudios de cada indicador se muestra entre paréntesis.`
     },
     authorSection: {
     text: "Este sitio fue creado por el <a href='https://labs.waterdata.usgs.gov/visualizations/'>USGS Vizlab</a>. <a href='https://www.usgs.gov/staff-profiles/elmera-azadpour'>Elmera Azadpour</a> dirigió el proyecto, con contribuciones de <a href='https://wim.usgs.gov/team/'>Aileen Clarke</a>, <a href='https://www.usgs.gov/staff-profiles/amanda-carr'>Mandie Carr</a>, <a href='https://www.usgs.gov/staff-profiles/oronde-drakes'>Oronde Drakes</a>, <a href='https://www.usgs.gov/staff-profiles/diana-l-restrepo-osorio'>Diana Restrepo-Osorio</a> y <a href='https://www.usgs.gov/staff-profiles/cee-nell'>Cee Nell</a>."
diff --git a/src/components/Authorship.vue b/src/components/AuthorshipSection.vue
similarity index 93%
rename from src/components/Authorship.vue
rename to src/components/AuthorshipSection.vue
index b178a7343abe8569dafbaf878a950db4cd6362e2..5bc6cbe5c580a67a6cf5f7bfcb4a1c843123671d 100644
--- a/src/components/Authorship.vue
+++ b/src/components/AuthorshipSection.vue
@@ -1,5 +1,5 @@
 <template>
-  <section id="authorship">
+    <section id="authorship">
     <div class="text-container title-text">
       <h3>USGS Vizlab</h3>
     </div>
diff --git a/src/components/BeeswarmChart.vue b/src/components/BeeswarmChart.vue
index b9a75148b4ba2606403b9881c3024a190fac30ce..96ac51d71d71374c7eca7c604d5f7dd77fc4bb50 100644
--- a/src/components/BeeswarmChart.vue
+++ b/src/components/BeeswarmChart.vue
@@ -44,9 +44,10 @@
         :class="['highlight', 'Exposure', { checked: isChecked.Exposure }]" 
         @click="toggleCategory('Exposure')"
       >
-        {{ t('text.components.chartText.bubbleLabels.Exposure') }}
-      </span> 
-      <p v-html="t('text.components.chartText.bubbleCheckboxEnd')"></p>
+        {{ t('text.components.chartText.bubbleLabels.Exposure') }} 
+      </span>
+      &nbsp;
+      <span v-html="t('text.components.chartText.bubbleCheckboxEnd')" />
     </p>
   </div>
     <div id="text2" class="text-container tooltip-width">
diff --git a/src/components/InteractiveDendrogram.vue b/src/components/InteractiveDendrogram.vue
index 7902ffcc8f5142be87b7d9e8b44ac21f464afd5a..96cd212a09911ab329831ece5c7bf17bbf54c357 100644
--- a/src/components/InteractiveDendrogram.vue
+++ b/src/components/InteractiveDendrogram.vue
@@ -89,7 +89,7 @@ onMounted(() => {
   });
 })
 
-async function loadData(isSpanish) {
+async function loadData() {
   try {
     const jsonData = await d3.json(publicPath + 'indicator_uncertainty.json');
     data.value = jsonData.map((d) => {
@@ -282,7 +282,7 @@ root.descendants().forEach(d => {
   // Enter new nodes
   const nodeBgEnter = nodeBg.enter().append('g')
     .attr('class', 'node-bg')
-    .attr('transform', d => `translate(${source.y0},${source.x0})`)
+    .attr('transform', `translate(${source.y0},${source.x0})`)
     .attr('fill-opacity', "white")
     .attr('stroke-opacity', 0)
     .attr('stroke-width', 2);
@@ -376,18 +376,18 @@ root.descendants().forEach(d => {
     .style('display', d => (d.children && d.children.length > 0) ? 'none' : 'inline');
 
   // Merge and update node backgrounds
-  const nodeBgUpdate = nodeBg.merge(nodeBgEnter).transition(transition)
+  nodeBg.merge(nodeBgEnter).transition(transition)
     .attr('transform', d => `translate(${d.y},${d.x})`)
     .attr('fill-opacity', 1)
     .attr('stroke-opacity', 1);
 
-  const nodeBgExit = nodeBg.exit().transition(transition).remove()
-    .attr('transform', d => `translate(${source.y},${source.x})`)
+  nodeBg.exit().transition(transition).remove()
+    .attr('transform', `translate(${source.y},${source.x})`)
     .attr('fill-opacity', 0)
     .attr('stroke-opacity', 0);
 
   // Merge and update nodes
-  const nodeUpdate = node.merge(nodeEnter).transition(transition)
+  node.merge(nodeEnter).transition(transition)
     .attr('transform', d => `translate(${d.y},${d.x})`)
     .attr('fill-opacity', 1)
     .attr('stroke-opacity', 1);
@@ -451,7 +451,6 @@ function wrap(text, width) {
 
     let word,
       line = [],
-      lineNumber = 0,
       lineHeight = 1.1,  // Consistent line height
       x = textElement.attr('x'),
       dy = parseFloat(textElement.attr('dy')),
diff --git a/src/components/References.vue b/src/components/ReferencesSection.vue
similarity index 100%
rename from src/components/References.vue
rename to src/components/ReferencesSection.vue
diff --git a/src/views/VisualizationView.vue b/src/views/VisualizationView.vue
index 4f1cf629dc1081d5972503eef7f7d72959a7a2d9..ebf8ec79831c82334473496cb309bc93121380e4 100644
--- a/src/views/VisualizationView.vue
+++ b/src/views/VisualizationView.vue
@@ -20,8 +20,8 @@
   import MapsSection from '.././components/MapsSection.vue'
   import ConclusionSection from '.././components/ConclusionSection.vue'
   import AboutTheTeam from '../components/AboutTheTeam.vue'
-  import ReferencesSection from '.././components/References.vue'
-  import AuthorshipSection from '.././components/Authorship.vue'
+  import ReferencesSection from '.././components/ReferencesSection.vue'
+  import AuthorshipSection from '.././components/AuthorshipSection.vue'
 
   const circleData = [
     { name: "Oronde Drakes", link: "https://www.usgs.gov/staff-profiles/oronde-drakes", image: "https://hazards.colorado.edu/api/v2/uploads/avatar/oronde_drakes2-1556849997156.JPG" },