From 46c0dba1e9715352e579be773f9299be46d29406 Mon Sep 17 00:00:00 2001 From: Jake Howell Date: Wed, 19 Aug 2026 22:01:58 +0700 Subject: [PATCH] fix: standardize EmptyState typography (#27720) --- site/src/components/EmptyState/EmptyState.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/site/src/components/EmptyState/EmptyState.tsx b/site/src/components/EmptyState/EmptyState.tsx index a2391e52ac..dcfab54895 100644 --- a/site/src/components/EmptyState/EmptyState.tsx +++ b/site/src/components/EmptyState/EmptyState.tsx @@ -34,9 +34,11 @@ export const EmptyState: FC = ({ )} {...attrs} > -
{message}
+
+ {message} +
{description && ( -

+

{description}

)}