diff --git a/src/components/AIQueryInterface.astro b/src/components/AIQueryInterface.astro index c09dc92..987c795 100644 --- a/src/components/AIQueryInterface.astro +++ b/src/components/AIQueryInterface.astro @@ -2022,7 +2022,7 @@ class AIQueryInterface { return `
-
+
${rank}
@@ -2155,16 +2155,16 @@ class AIQueryInterface { ${pros?.length ? `
✓ Vorteile
-
    - ${pros.map(pro => `
  • ${sanitizeText(pro)}
  • `).join('')} +
      + ${pros.map(pro => `
    • ${sanitizeText(pro)}
    • `).join('')}
` : ''} ${cons?.length ? `
✗ Nachteile
-
    - ${cons.map(con => `
  • ${sanitizeText(con)}
  • `).join('')} +
      + ${cons.map(con => `
    • ${sanitizeText(con)}
    • `).join('')}
` : ''} @@ -2231,15 +2231,6 @@ class AIQueryInterface { } } - getSuitabilityText(score) { - const texts = { - high: 'GUT GEEIGNET', - medium: 'GEEIGNET', - low: 'VIELLEICHT GEEIGNET' - }; - return texts[score] || 'GEEIGNET'; - } - showLoading() { showElement(this.elements.loading); }