diff --git a/src/frontend/src/locales/de.json b/src/frontend/src/locales/de.json
index 4ea7e323a8..97d2be7121 100644
--- a/src/frontend/src/locales/de.json
+++ b/src/frontend/src/locales/de.json
@@ -381,4 +381,4 @@
"table.noColumnTitle": "Keine Spaltendefinitionen",
"table.noDataMessage": "Hoppla! Es scheint, als gäbe es derzeit keine Daten, die angezeigt werden könnten. Bitte versuchen Sie es später noch einmal.",
"table.noDataTitle": "Keine Daten verfügbar"
-}
\ No newline at end of file
+}
diff --git a/src/frontend/src/locales/es.json b/src/frontend/src/locales/es.json
index c6753cde94..5a2e4251f2 100644
--- a/src/frontend/src/locales/es.json
+++ b/src/frontend/src/locales/es.json
@@ -381,4 +381,4 @@
"table.noColumnTitle": "No hay definiciones de columnas",
"table.noDataMessage": "¡Ups! Parece que no hay datos que mostrar en este momento. Vuelve a intentarlo más tarde.",
"table.noDataTitle": "No hay datos disponibles"
-}
\ No newline at end of file
+}
diff --git a/src/frontend/src/locales/fr.json b/src/frontend/src/locales/fr.json
index 842a229cd5..31cd1b1cf8 100644
--- a/src/frontend/src/locales/fr.json
+++ b/src/frontend/src/locales/fr.json
@@ -381,4 +381,4 @@
"table.noColumnTitle": "Aucune définition de colonne",
"table.noDataMessage": "Oups ! Il semble qu'il n'y ait aucune donnée à afficher pour le moment. Veuillez revenir plus tard.",
"table.noDataTitle": "Aucune donnée disponible"
-}
\ No newline at end of file
+}
diff --git a/src/frontend/src/locales/ja.json b/src/frontend/src/locales/ja.json
index 705960ed36..0df55626c5 100644
--- a/src/frontend/src/locales/ja.json
+++ b/src/frontend/src/locales/ja.json
@@ -381,4 +381,4 @@
"table.noColumnTitle": "列の定義がありません",
"table.noDataMessage": "申し訳ありません。 現在、表示するデータがないようです。 後ほど再度ご確認ください。",
"table.noDataTitle": "使用可能なデータがありません"
-}
\ No newline at end of file
+}
diff --git a/src/frontend/src/locales/pt.json b/src/frontend/src/locales/pt.json
index 4e8a590af2..64e13fa46b 100644
--- a/src/frontend/src/locales/pt.json
+++ b/src/frontend/src/locales/pt.json
@@ -381,4 +381,4 @@
"table.noColumnTitle": "Sem definições de colunas",
"table.noDataMessage": "Ops! Parece que não há dados para exibir no momento. Por favor, volte mais tarde.",
"table.noDataTitle": "Nenhum dado disponível"
-}
\ No newline at end of file
+}
diff --git a/src/frontend/src/locales/zh-Hans.json b/src/frontend/src/locales/zh-Hans.json
index b17e6abd87..96438442f5 100644
--- a/src/frontend/src/locales/zh-Hans.json
+++ b/src/frontend/src/locales/zh-Hans.json
@@ -381,4 +381,4 @@
"table.noColumnTitle": "没有列定义",
"table.noDataMessage": "糟糕! 目前似乎没有数据可显示。 请稍后再试。",
"table.noDataTitle": "无可用数据"
-}
\ No newline at end of file
+}
diff --git a/src/frontend/src/modals/IOModal/components/chat-view-wrapper.tsx b/src/frontend/src/modals/IOModal/components/chat-view-wrapper.tsx
index 565801d804..84529d6841 100644
--- a/src/frontend/src/modals/IOModal/components/chat-view-wrapper.tsx
+++ b/src/frontend/src/modals/IOModal/components/chat-view-wrapper.tsx
@@ -72,7 +72,11 @@ export const ChatViewWrapper = ({
playgroundPage ? "right-2 top-4" : "absolute right-12 top-2 h-8",
)}
>
-
+
)}
diff --git a/src/frontend/src/modals/apiModal/index.tsx b/src/frontend/src/modals/apiModal/index.tsx
index d708d1c90c..5e6bc46529 100644
--- a/src/frontend/src/modals/apiModal/index.tsx
+++ b/src/frontend/src/modals/apiModal/index.tsx
@@ -145,7 +145,9 @@ export default function ApiModal({
name="SlidersHorizontal"
className="h-3.5 w-3.5"
/>
- {t("modal.api.inputSchema")} ({Object.keys(tweaks)?.length})
+
+ {t("modal.api.inputSchema")} ({Object.keys(tweaks)?.length}){" "}
+
@@ -179,7 +181,9 @@ export default function ApiModal({
{!validEndpointName && (
- {t("modal.api.endpointValidation", { maxLength: MAX_LENGTH })}
+ {t("modal.api.endpointValidation", {
+ maxLength: MAX_LENGTH,
+ })}
)}
@@ -198,7 +202,9 @@ export default function ApiModal({
)}
- {t("modal.api.exposeApi")}
+
+ {t("modal.api.exposeApi")}
+
{t("modal.api.exposeApiDescription")}
diff --git a/src/frontend/src/modals/mustachePromptModal/index.tsx b/src/frontend/src/modals/mustachePromptModal/index.tsx
index 7eeb4dbf23..7557afdb4e 100644
--- a/src/frontend/src/modals/mustachePromptModal/index.tsx
+++ b/src/frontend/src/modals/mustachePromptModal/index.tsx
@@ -8,9 +8,7 @@ import ShadTooltip from "../../components/common/shadTooltipComponent";
import { Badge } from "../../components/ui/badge";
import { Button } from "../../components/ui/button";
import { Textarea } from "../../components/ui/textarea";
-import {
- MAX_WORDS_HIGHLIGHT,
-} from "../../constants/constants";
+import { MAX_WORDS_HIGHLIGHT } from "../../constants/constants";
import useAlertStore from "../../stores/alertStore";
import { PromptModalType } from "../../types/components";
import { handleKeyDown } from "../../utils/reactflowUtils";
diff --git a/src/frontend/src/modals/queryModal/index.tsx b/src/frontend/src/modals/queryModal/index.tsx
index df286b5574..8be7057f0c 100644
--- a/src/frontend/src/modals/queryModal/index.tsx
+++ b/src/frontend/src/modals/queryModal/index.tsx
@@ -38,7 +38,9 @@ export default function QueryModal({