- Add debounced state updates for title and content (500ms delay) - Immediate UI updates with delayed history saving - Prevent one-letter-per-undo issue - Add cleanup for debounce timers on unmount
5 lines
132 B
JavaScript
5 lines
132 B
JavaScript
import { parseDef } from "../parseDef.js";
|
|
export function parsePromiseDef(def, refs) {
|
|
return parseDef(def.type._def, refs);
|
|
}
|