diff --git a/apps/web/components/quick-note-card.tsx b/apps/web/components/quick-note-card.tsx index 2b369a26..49eca58e 100644 --- a/apps/web/components/quick-note-card.tsx +++ b/apps/web/components/quick-note-card.tsx @@ -81,11 +81,10 @@ export function QuickNoteCard({ const canSave = draft.trim().length > 0 && !isSaving const hasDraft = draft.trim().length > 0 - const editorHeight = - isExpanded - ? "min-h-[min(58dvh,520px)] sm:min-h-[min(54vh,560px)]" - : hasDraft - ? "min-h-[188px]" + const editorHeight = isExpanded + ? "min-h-[min(58dvh,520px)] sm:min-h-[min(54vh,560px)]" + : hasDraft + ? "min-h-[188px]" : "min-h-[120px]" return ( @@ -100,8 +99,7 @@ export function QuickNoteCard({