When cmd clicking on an injected dependency in a hook or a functional component - the IDE leads to the provider instead of to the implementation.
Reproduction
const foo = ({useBar}: Injected) => { // ✅ cmd clicking on useBar leads to the implementation as expected
const bar = useBar(); // ❌ cmd clicking on useBar leads to the provider
return <>bar<>;
}