Known Issues
Overview
Issue Description
Incorrect Usage
let x = pepperi.api.userDefinedTables.getList({});
let data = x?.success ? x.objects : []; // This will cause an errorCorrect Workaround
let x = pepperi.api.userDefinedTables.getList({});
let data= x && x.success ? x.objects : []; // Safe alternativeLast updated