Skip to content

Commit

Permalink
Fix js error can't find linkId
Browse files Browse the repository at this point in the history
  • Loading branch information
fongsean committed Jun 24, 2024
1 parent 04a09f6 commit d178b3d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function removeEmptyAnswersFromItemRecursive(
const childQrItem = qrItems[qrItemIndex];

// Save qrItem if linkIds of current qItem and qrItem are the same
if (childQItem && childQrItem && childQItem.linkId === childQrItem.linkId) {
if (childQItem && childQrItem && childQItem?.linkId === childQrItem?.linkId) {
// if (!qItems[qrItemIndex]) {
// continue;
// }
Expand Down

0 comments on commit d178b3d

Please sign in to comment.