diff --git a/web-app/src/containers/ThreadContent.tsx b/web-app/src/containers/ThreadContent.tsx
index 82f7d8d7b..a4d9c608d 100644
--- a/web-app/src/containers/ThreadContent.tsx
+++ b/web-app/src/containers/ThreadContent.tsx
@@ -26,6 +26,11 @@ import {
import { Button } from '@/components/ui/button'
import { Textarea } from '@/components/ui/textarea'
import { toast } from 'sonner'
+import {
+ Tooltip,
+ TooltipContent,
+ TooltipTrigger,
+} from '@/components/ui/tooltip'
const CopyButton = ({ text }: { text: string }) => {
const [copied, setCopied] = useState(false)
@@ -47,12 +52,14 @@ const CopyButton = ({ text }: { text: string }) => {
Copied!
>
) : (
- <>
-
-
- Copy
-
- >
+
+
+
+
+
+ Copy
+
+
)}
)
@@ -140,17 +147,16 @@ export const ThreadContent = memo(
-
+
+
+
+
+
+ Delete
+
+
)}
@@ -245,27 +255,36 @@ export const ThreadContent = memo(
)}
>
-
+
+
+
+
+
+ Delete
+
+
+
{item.isLastMessage && (
-
+
+
+
+
+
+ Regenerate
+
+
)}
diff --git a/web-app/src/containers/loaders/ModelLoader.tsx b/web-app/src/containers/loaders/ModelLoader.tsx
index b6b30c7bc..146037a0a 100644
--- a/web-app/src/containers/loaders/ModelLoader.tsx
+++ b/web-app/src/containers/loaders/ModelLoader.tsx
@@ -2,7 +2,7 @@ export function ModelLoader() {
return (
-
Loading Model...
+ Loading model...
)
}
diff --git a/web-app/src/routes/hub.tsx b/web-app/src/routes/hub.tsx
index af6819ce0..2bb3de279 100644
--- a/web-app/src/routes/hub.tsx
+++ b/web-app/src/routes/hub.tsx
@@ -294,7 +294,7 @@ function Hub() {
{expandedModels[model.id] && model.models.length > 0 && (
- {model.models.slice(1).map((variant) => (
+ {model.models.map((variant) => (