I've tried looking for solutions but didn't find any.
I have the following commutative diagram (mwe)
\documentclass{article} \usepackage{tikz-cd} \begin{document} \begin{tikzcd} 0 \arrow[hookrightarrow]{r} & A\arrow[hookrightarrow]{r}{\varphi}\arrow[hookrightarrow]{d}{\eta_1} & B\arrow{r}{\psi}\arrow{d}{\eta_2} & C\arrow{r}\arrow{d}{\eta_3} & 0 \\ 0 \arrow[hookrightarrow]{r} & A'\arrow[hookrightarrow]{r}[swap]{\varphi'} & B'\arrow{r}[swap]{\psi'} & C'\arrow{r} & 0 \end{tikzcd} \end{document} But the commutative diagram looks like this:
As you can see, the hook of the first vertical arrow is oddly reversed. I have tried using
\arrow[d, hook']{d} instead, but this just flips the entire inclusion arrow -- in this case the hook is at least facing the correct direction, but the entire arrow does not.
What causes this issue?

