I'm getting this error when I try to convert a boolean to show "Unknown" for blank values, "Yes" for 1, and "No" for 0. We are using Redshift and the error is: The ...
A workaround is to convert the boolean value to a string before rendering it. This can be done using String(customValue) or customValue.toString() or JSON.stringify(customValue). This issue occurs ...