From f2013f47aaf01d6b976fbc17af1473306334888b Mon Sep 17 00:00:00 2001 From: Eilen Shin <136898293+Eilen6316@users.noreply.github.com> Date: Mon, 20 Apr 2026 11:36:16 +0800 Subject: [PATCH] fix command palette hydration mismatch (#2301) * fix command palette hydration mismatch * style: format command dialog description --- frontend/src/components/ui/command.tsx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/frontend/src/components/ui/command.tsx b/frontend/src/components/ui/command.tsx index ee7450af2..03b8b00d3 100644 --- a/frontend/src/components/ui/command.tsx +++ b/frontend/src/components/ui/command.tsx @@ -9,7 +9,6 @@ import { Dialog, DialogContent, DialogDescription, - DialogHeader, DialogTitle, } from "@/components/ui/dialog"; @@ -44,14 +43,12 @@ function CommandDialog({ }) { return ( - - {title} - {description} - + {title} + {description} {children}