code review from zhangzhang li#3
Conversation
|
Hi Zhangzhang, thanks for the code review and your suggestions. Those will definitely help our app improve a lot. For your feedback 3, we have propTypes check for all controlled components, I don't think it's necessary to add propTypes to uncontrolled ones. Besides, for feedback 5, our implementation is kinda hacky in that we only don't allow 'undefined' but 'null' is accepted, so we can't use the simpler one as '!tagFilter' though. Please let us know if we have anything to improve :) |
|
Hello Christ, for feedback 3, I believe that it is the professor's requirement. |
|
Yeah, I know. As I said we have propTypes check for all controlled components. Those uncontrolled ones, since they don't accept props at all, we can't define propTypes rather than have an empty object. Thank you anyway |
UX Feedbacks:
Code feedback: