🐛 fix(formModal): change variable name from chatValue to value for clarity and consistency

This commit is contained in:
Lucas Oliveira 2023-06-30 20:51:02 -03:00
commit 5611eafa63

View file

@ -561,7 +561,7 @@ export default function FormModal({
let newTabsState = _.cloneDeep(old);
newTabsState[id.current].formKeysData.input_keys[
chatKey
] = chatValue;
] = value;
return newTabsState;
});
}}