This problem might be more pointed towards Zotero and the way it exports to .bib-files, but I'll try here either way.
I am writing a LaTeX document in Overleaf, with a group library in Zotero. The references are imported into Overleaf by using the external URL of the group library (Explained here), ending up as "references.bib" in Overleaf.
When referencing to an official website of some company, the written date is often not specified (leaving it blank), and today's date is entered into Zotero in the accessed-field.
The title of the document is often "COMPANYNAME blabla". So the command will look like: \cite{COMPANYNAME COMPANYNAME nodate}. When later adding another source from the same website (But a different article/page from the same company), the older one is therefore called "COMPANYNAME COMPANYNAME nodate-1", making previous footnotes refer to the newer one i.e. the wrong source.
How can I avoid this?
The packages/config I am using:
\bibliographystyle{IEEEtran}
\usepackage[backend = biber, % Recommended backend for sorting bibliography
%style = IEEEtran, % Close to the 'Harvard' referencing style
urldate = long, % Long: 24th Mar. 1997 | Short: 24/03/1997
maxcitenames = 2, % Number of authors in cite before replaced with 'Author#1 et al.'
]{biblatex}
\addbibresource{references.bib} % Adding our file containing the references
Example:
If I were to write a statement about a Lamborghini Aventador, i would do it like this:
"Aventador is a fast car\cite{lamborghini_lamborghini_nodate}."
When I later add a second source from Laborghini, in this example the Urus page, to Zotero, it will be called "lamborghini_lamborghini_nodate" in the references.bib file. The old aventador-source will be called "lamborghini_lamborghini_nodate-1".
This will result in the statement I wrote earlier (and referenced to the Aventador page) is now pointing to the wrong source (the Urus page).
These two examples in the references.bib file:

.bibfile, that subsequently is used in a (Lua)LaTeX document using\addbibresource{refernces.bib}. My references are formatted correctly and without the issues you're describing. I use Better BibTeX to handle export and citation keys in Zotero, which probably circumvents the call to Zotero API. – alchemist Jan 30 '23 at 11:01references.bibfile? How is it constructed in terms ofBiblatexlabels? Does that look the same as the references in your Zotero library? When only websites are affected, take a careful look how those entries are done in Zotero, especially which fields are entered and which not. – alchemist Jan 30 '23 at 11:05Better BibTeXin my Zotero. That allows me to change the citation key formula toauth.lower+year. You don't have an author nor a date field in your output. Would adding those to your entries have the same effect as I see in my library? – alchemist Jan 30 '23 at 15:23So it seems that it somewhat of a known problem :))
– QualZy Jan 30 '23 at 18:12authorfield in your references. So did theBetter BibTeXaddon in Zotero do the trick in organising your citation keys and hence the correct referencing in Overleaf? – alchemist Jan 30 '23 at 22:29