diff --git a/examples/server/themes/mount-ai/index.html b/examples/server/themes/mount-ai/index.html
index a4a33aeb1..d4bd2da4e 100644
--- a/examples/server/themes/mount-ai/index.html
+++ b/examples/server/themes/mount-ai/index.html
@@ -560,33 +560,33 @@ function updateSystemPrompt(e) {
}
const FloatField = ({ label, title, max, min, name, step, value }) => {
- return html`
-
-
-
- ${value}
-
- `
- };
+ return html`
+
+
+
+ ${value}
+
+ `
+};
- const IntField = ({ label, title, max, min, step, name, value }) => {
- return html`
-
-
-
- ${value}
-
- `
- };
+const IntField = ({ label, title, max, min, step, name, value }) => {
+ return html`
+
+
+
+ ${value}
+
+ `
+};
- const BoolField = ({ label, title, name, value }) => {
- return html`
-
-
-
-
- `
- };
+const BoolField = ({ label, title, name, value }) => {
+ return html`
+
+
+
+
+ `
+};
const userTemplateReset = (e) => {
e.preventDefault();
@@ -793,7 +793,7 @@ function updateSystemPrompt(e) {
${session.value.type === 'chat' ? ChatConfigForm() : CompletionConfigForm()}