RemoveNote is not working as expected.

When we tried to update notes using

useApplyNoteChange({

type: ‘updateNote’,
note: “testing”
});
It’s working fine, But when we tried to remove note using remove note

useApplyNoteChange({
type: ‘removeNote’
});

The API call is successful, but when we check the note value in the .json file, it is not blank. Instead, it displays a previously added note, it might be retrieved from the cache rather than being set to blank.