however, in the map function PrevPointTableHead.js is destructuring 'mobile' as a key.
since mobile is always undefined and thus falsy (there is no mobile key available, only value), the every header title get the css class that hide the table on mobile, per our ternary.
change the the name of the key from 'value' to 'mobile' for each of the objects in the PARTICIPANT_LIST_TABLE_TITLES array.
This is my fault for not catching initially. currently the constant for header titles is:
however, in the map function
PrevPointTableHead.js
is destructuring 'mobile' as a key. since mobile is alwaysundefined
and thus falsy (there is no mobile key available, only value), the every header title get the css class that hide the table on mobile, per our ternary.change the the name of the key from 'value' to 'mobile' for each of the objects in the
PARTICIPANT_LIST_TABLE_TITLES
array.