margaritahumanitarian / helpafamily

Found warning comments in code JS-0099
Documentation
Minor
3 years ago3 years old
Unexpected 'todo' comment: 'todo: -translate-y-1/2 this also we need...'
30        className={`btn btn-accent rounded-sm btn-size absolute left-4 top-1/2 z-20 ${
31          !hasItemsOnLeft && 'hidden'
32        }`}
33        // todo: -translate-y-1/2 this also we need to add to make it vertically center34        // disabled={isPending ? true : false}
35        onClick={scrollLeft}
36        type="button"
Unexpected 'todo' comment: 'todo: -translate-y-1/2 this also we need...'
18        className={`btn btn-accent rounded-sm btn-size absolute right-4 top-1/2 z-20 ${
19          !hasItemsOnRight && 'hidden'
20        }`}
21        // todo: -translate-y-1/2 this also we need to add to make it vertically center22        // disabled={isPending ? true : false}
23        onClick={scrollRight}
24        type="button"
Unexpected 'todo' comment: 'TODO send email per...'
21  };
22
23  const result = await db.collection('DeviceDonations').add(data);
24  // TODO send email per https://github.com/margaritahumanitarian/helpafamily/issues/16625  res.status(StatusCodes.OK).json({ receiptNumber: result.id, data });
26}