diff --git a/app/src/components/SelectGroup.tsx b/app/src/components/SelectGroup.tsx
index 29dd3f24..39eac4c6 100644
--- a/app/src/components/SelectGroup.tsx
+++ b/app/src/components/SelectGroup.tsx
@@ -31,14 +31,14 @@ type SelectGroupProps = {
function GroupSelectItem(props: SelectItemProps) {
return (
- <>
+
{props.value}
{props.badge && (
{props.badge.name}
)}
- >
+
);
}
diff --git a/app/src/conf.ts b/app/src/conf.ts
index 73a04d1d..e2ed5abf 100644
--- a/app/src/conf.ts
+++ b/app/src/conf.ts
@@ -1,7 +1,7 @@
import axios from "axios";
import { Model } from "./conversation/types.ts";
-export const version = "3.5.10";
+export const version = "3.5.11";
export const dev: boolean = window.location.hostname === "localhost";
export const deploy: boolean = true;
export let rest_api: string = "http://localhost:8094";