i have this ternary:
{item?.orderItemStatus?.name === ('PROCESSED' || 'IN_TRANSIT') ? (
<ReturnItemButton orderItem={item} />
) : null}
but it only seems to work for PROCESSED. If i change the status to IN_TRANSIT it returns the null.
Why?