fix: add missing quotes around className in NoteTitleInput

This commit is contained in:
Hermes
2026-08-01 12:58:34 +00:00
parent ec0fb10b3e
commit 8917f3ad19
2 changed files with 17 additions and 1 deletions
+1 -1
View File
@@ -71,7 +71,7 @@ const NoteTitleInput = memo(function NoteTitleInput({ noteId, initialTitle }: {
value={localTitle}
onChange={(e) => setLocalTitle(e.target.value)}
onBlur={handleBlur}
className=flex h-9 w-full rounded-md border-0 bg-transparent px-0 py-1 text-lg font-semibold text-base shadow-none transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-0 disabled:cursor-not-allowed disabled:opacity-50
className="flex h-9 w-full rounded-md border-0 bg-transparent px-0 py-1 text-lg font-semibold text-base shadow-none transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-0 disabled:cursor-not-allowed disabled:opacity-50"
/>
);
});