Code producing an error of:
Uncaught (in promise) InvalidInterceptionRequestError: interceptor result cannot be empty or undefined; behavior must be either “block” or “allow”, received “undefined”
Code:
const applyNoteChange = useApplyNoteChange();
// ...
async function handleSubmit() {
const result = await applyNoteChange({
type: "updateNote",
note: "test",
});
console.log(result);
}
// ...
Capabilities are api_access and network_access.
Even the docs example does not work, any idea?