Hello! I have a custom extension. I haven't made any changes to the code recently but today calling expandRecord() starting throwing this error and crashing my extension:
TypeError: Cannot read properties of undefined (reading 'parentBase')I've confirmed that it's being passed a valid-seeming record object.
Here's what my code looks like, it's defined in the top level on my component. 🤔 🤔
const expand = (record) => {
console.log(record)
expandRecord(record)
}Let me know if you need any other information. Thanks for your help!
