From 5b06419053d4f798bba92f9daefca583edff0dd4 Mon Sep 17 00:00:00 2001 From: Ishaan Gupta Date: Thu, 21 May 2026 22:31:40 +0530 Subject: [PATCH] fix blue background thing --- apps/web/components/quick-note-card.tsx | 9 --------- 1 file changed, 9 deletions(-) diff --git a/apps/web/components/quick-note-card.tsx b/apps/web/components/quick-note-card.tsx index 245b2baa..f513147d 100644 --- a/apps/web/components/quick-note-card.tsx +++ b/apps/web/components/quick-note-card.tsx @@ -47,14 +47,6 @@ export function QuickNoteCard({ onMaximize(draft) }, [draft, onMaximize]) - const handleBlurCapture = useCallback( - (e: React.FocusEvent) => { - if (e.currentTarget.contains(e.relatedTarget as Node | null)) return - setIsExpanded(false) - }, - [], - ) - const handleBackdropPointerDown = useCallback(() => { const activeElement = document.activeElement if (activeElement instanceof HTMLElement) { @@ -114,7 +106,6 @@ export function QuickNoteCard({ "relative flex flex-col rounded-[18px] bg-[#0B1017] p-3 transition-[height,width] duration-200", )} onFocusCapture={() => setIsExpanded(true)} - onBlurCapture={handleBlurCapture} style={{ boxShadow: "inset 1.421px 1.421px 4.263px 0 rgba(11, 15, 21, 0.4)", }}