Skip to content

Commit

Permalink
add tbd
Browse files Browse the repository at this point in the history
  • Loading branch information
santipalenque committed May 16, 2024
1 parent 95d5562 commit 6dd27c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reducers/tickets/ticket-list-reducer.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const ticketListReducer = (state = DEFAULT_STATE, action) => {
bought_date: bought_date,
owner_name: t.owner && (t.owner.first_name && t.owner.last_name) ? t.owner.first_name + ' ' + t.owner.last_name : 'N/A',
owner_email: t.owner ? t.owner.email : 'N/A',
owner_company: t.owner && t.owner.company ? t.owner.company : '',
owner_company: t.owner?.company || 'TBD',
promo_code: t.promo_code ? t.promo_code.code : 'N/A',
status: t.status,
checked: selectedAll ? !excludedIds.includes(t.id) : selectedIds.includes(t.id),
Expand Down

0 comments on commit 6dd27c8

Please sign in to comment.