Code RoomSource URL javascript protocol
HardPrep Room Coding #2030

Source URL javascript protocol

Code reviewSecuritySenior–Staff~20 min

Review this React TypeScript user-link component.

What a strong answer looks like

Separate real bugs from style. Rank issues by severity, point at the root cause rather than the symptom, and suggest a concrete fix, specific and kind.

0:00 of about 20 min
Mark a line and say what kind of problem it is.0 findings
1function PostBody({ post }: { post: { text: string; sourceUrl: string } }) {
2 return (
3 <article>
4 <p>{post.text}</p>
5 <a href={post.sourceUrl}>Source</a>
6 <img src={post.sourceUrl} alt="preview" onError={(e) => (e.currentTarget.src = post.sourceUrl)} />
7 </article>
8 );
9}
Which questions mattered is sealed until you submit. Telling you now would just be handing over the edge cases.