mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-02 06:06:41 +01:00
Reduce debounce to 250 for now
This commit is contained in:
parent
28acd9720e
commit
06aece7d3a
1 changed files with 1 additions and 1 deletions
|
@ -1415,7 +1415,7 @@ function MediaAttachment({
|
||||||
const suffixType = type.split('/')[0];
|
const suffixType = type.split('/')[0];
|
||||||
const debouncedOnDescriptionChange = useDebouncedCallback(
|
const debouncedOnDescriptionChange = useDebouncedCallback(
|
||||||
onDescriptionChange,
|
onDescriptionChange,
|
||||||
500,
|
250,
|
||||||
);
|
);
|
||||||
|
|
||||||
const [showModal, setShowModal] = useState(false);
|
const [showModal, setShowModal] = useState(false);
|
||||||
|
|
Loading…
Reference in a new issue