In the MWE below cleveref produces `section 1' instead of a reference to equation 2. What's the easiest fix? (other than using \eqref or (\ref))
\documentclass{article}
\usepackage{cleveref}
\usepackage{cases}
\begin{document}
\section{Intro}
\begin{numcases}{}
a=b \\
c=d. \label{c=d}
\end{numcases}
Cleveref produces a reference to the section: \cref{c=d}
Regular ref produces a reference to the equation: \ref{c=d}.
\end{document}
