When you define a primary key for a table, that key is an attribute that uniquely identifies a row in the table. This means, that with only date as the primary key, you anticipate one row per date. For different days the values JurisdictionID and ReportCovidCases/Death could be different. Which does sound a little odd to me.
I don't really know the data you are working with, but my guess is that you should add the JurisdictionID to the primary key. That is, each row reports the number of cases/deaths on a certain date in a certain jurisdiction. That sounds more normal to me.