making UI work again

This commit is contained in:
frankknoll
2023-10-13 20:07:13 +02:00
parent bc1406e39f
commit f28ee6e400
2 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
class PrrByVaccineProvider {
static getPrrByVaccine(symptom) {
return fetch(`../data/ProportionalReportingRatios/${symptom}.json`).then(response => response.json());
return fetch(`../data/ProportionalReportingRatios/symptoms/${symptom}.json`).then(response => response.json());
}
}