Hey,
So im trying to get values from my questions. But whe i use onQuestionValueChanged, i get the following error: the event, survey123:onQuestionValueChanged, is not allowed with the clientId.
for the clientID i made an application in my portal and took the appID.

let webform = new Survey123WebForm({
itemId: '',
container: '',
clientId: '',
portalUrl: '',
onQuestionValueChanged:test,
});
function test(data){
if(data.field === "untitled_question_1"){
console.log("value changed");
console.log(data);
}
}do i miss something? Thanks for helping.