biblatex prints the string n.d. (no date) in the bibliography for entries that have no date information in the .bib file (as a result of this question).
It didn't use to print n.d. for @online entries, but in the current version (3.6) it does. My question is, how can I remove all such n.d./nodate strings from all @online entries, while leaving others alone (as in @book in the example below, which should still print n.d.)?
\documentclass{article}
\usepackage[style=authoryear-comp]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{lennon,
AUTHOR = "John Lennon",
TITLE = "Who did what in the Beatles"}
@online{google,
TITLE = "Google",
URL = "https://www.google.com"}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\textcites{lennon}{google}
\printbibliography
\end{document}

