“Why is ref.current usually not included as an Effect dependency?”
Refs automatically trigger re-renders when changed
React cannot access refs during Effects
Changing ref.current does not trigger rendering, so React cannot track it reactively
Refs are immutable once initialized