diff --git a/src/ui/sidebar/SnippetsPanel.tsx b/src/ui/sidebar/SnippetsPanel.tsx
index c8259e57..b70bbb34 100644
--- a/src/ui/sidebar/SnippetsPanel.tsx
+++ b/src/ui/sidebar/SnippetsPanel.tsx
@@ -908,12 +908,14 @@ function SnippetCard({
onDragEnd={onDragEnd}
className={`border bg-background p-2.5 flex flex-col gap-2 group/card transition-opacity ${isDragging ? "opacity-40" : "opacity-100"} border-border`}
>
-
+
- {snippet.name}
+
+ {snippet.name}
+
{snippet.description && (
-
+
{snippet.description}
)}
@@ -925,7 +927,7 @@ function SnippetCard({
/>
)}
-
+
{snippet.content}
{targetHosts.length > 0 && (
@@ -936,7 +938,7 @@ function SnippetCard({
className="inline-flex items-center gap-1 text-[10px] px-1.5 py-0.5 bg-accent-brand/10 text-accent-brand border border-accent-brand/20"
>
- {host.name || host.ip}
+ {host.name || host.ip}
))}