From 6f413deb9011957580f4dbbe4867e3815d636442 Mon Sep 17 00:00:00 2001 From: Gigi Date: Fri, 17 Oct 2025 12:48:57 +0200 Subject: [PATCH] ui(debug): increase ciphertext textarea height to 5 lines (h-20) --- src/components/Debug.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Debug.tsx b/src/components/Debug.tsx index bae4ff2e..0d085f8a 100644 --- a/src/components/Debug.tsx +++ b/src/components/Debug.tsx @@ -171,7 +171,7 @@ const Debug: React.FC = () => { } const CodeBox = ({ value }: { value: string }) => ( -
+
{value || '—'}
)