From 0bafc3d8586863899a7529aab4b26f4560c6d10f Mon Sep 17 00:00:00 2001 From: talksik Date: Thu, 12 Mar 2026 07:32:20 -0700 Subject: [PATCH] chore: remove gradient colors for text preview This was competing visually with other previews. --- js/src/features/streams/particle-preview.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/features/streams/particle-preview.tsx b/js/src/features/streams/particle-preview.tsx index 349bc74..3f7eeb8 100644 --- a/js/src/features/streams/particle-preview.tsx +++ b/js/src/features/streams/particle-preview.tsx @@ -49,7 +49,7 @@ function TextPreview({ particle }: { particle: StreamParticle }) { // only show x first chars for preview, to avoid overflow and also to determine text size const truncated = data.content.length > 30 ? data.content.slice(0, 30) + "..." : data.content; return ( -
+