[inpTitle, inpBody].forEach(inputField => {
inputField.addEventListener("blur", () => {
const updatedTitle = inpTitle.value.trim();
const updatedBody = inpBody.value.trim();
this.onNoteEdit(updatedTitle, updatedBody);
});
});
this error is being shown in the console too Uncaught TypeError: Cannot read properties of null (reading 'addEventListener')