This PR addresses the following two React warnings:
Warning: Failed prop type: The prop id is marked as required in Picky, but its value is undefined
Received false for a non-boolean attribute className.
If you used to conditionally omit it with className={condition && value}, pass className={condition ? value : undefined} instead.
This PR addresses the following two React warnings: