Bundle.js:78 Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'phone') at getObjectProperty

I am getting following error and cannot resolve. can you please help?
bundle.js:78 Uncaught (in promise) TypeError: Cannot read properties of undefined (reading ‘phone’)
at getObjectProperty


My appid = 94496922-170D-4236-FF64-228CA5F5DE00

Hello @Sanjay_Christian,

Based on the error message, you have some custom logic, and in this logic (see Before Enter logic handler) you’re trying to take the phone property of some object. The problem is that this object does not have any value. Please add Print blocks and try debugging this part of the code.

Thank you so much! I forgot about “before enter” event.