PR feedback

This commit is contained in:
Dean 2025-02-13 12:52:58 +00:00
parent 02a2d0d209
commit 84cee75069
1 changed files with 0 additions and 2 deletions

View File

@ -144,7 +144,6 @@
? [hbAutocomplete([...bindingsToCompletions(bindings, codeMode)])]
: []
// TODO: check if it inputData != newInputData (memo)
const getInputData = (testData, blockInputs) => {
// Test data is not cloned for reactivity
let newInputData = testData || cloneDeep(blockInputs)
@ -161,7 +160,6 @@
}
const setDefaultEnumValues = () => {
// TODO: Update this for memoisation
for (const [key, value] of schemaProperties) {
if (value.type === "string" && value.enum && inputData[key] == null) {
inputData[key] = value.enum[0]