Mit
    \printbibliography[heading=none]
kannst Du die von `biblatex` erzeugte Überschrift des Literaturverzeichnisses unterdrücken.
    \documentclass[10pt]{beamer}
    
    \usetheme[progressbar=frametitle]{metropolis}
    \usepackage[backend=biber, style=numeric]{biblatex}
    
    \addbibresource{biblatex-examples.bib}
    
    \begin{document}
    \begin{frame}{}
      Some references to showcase [allowframebreaks] \textcite{sigfridsson}
    \end{frame}
    
    \begin{frame}[allowframebreaks]{References}
    \printbibliography[heading=none]
    \end{frame}
    \end{document}