refactor: drawers refactored

This commit is contained in:
2025-09-06 11:09:42 +04:00
parent 67780b5251
commit d76dc82cb8
44 changed files with 239 additions and 227 deletions

View File

@ -49,7 +49,7 @@ const InPlaceInputDesktop: FC<Props> = ({
};
const onCancelCreating = () => {
setLocalValue(localValue);
setLocalValue("");
setIsWriting(false);
};
@ -58,6 +58,7 @@ const InPlaceInputDesktop: FC<Props> = ({
if (val) {
onChange(val);
}
setLocalValue("");
setIsWriting(false);
};