Effect runs on every render
The dependency array is empty but the effect reads props.userId. Stale data or infinite loops can follow.
Before
useEffect(() => {
fetchProfile(props.userId);
}, []);Suggested direction
useEffect(() => {
fetchProfile(props.userId);
}, [props.userId]);