A critical connection is another name for a bridge. It is an edge whose removal disconnects the graph. The term critical connection is used in networking contexts to stress the importance of the edge. Lose it, and the network splits into isolated parts. LeetCode uses this term in problem .
The problem asks you to find all critical connections in a network, which is exactly the bridge-finding problem.