Skip to content

Commit 3e31272

Browse files
fix: correct data path
1 parent 5950d25 commit 3e31272

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/services/dataService.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ async function loadData() {
1818
loadPromise = (async () => {
1919
try {
2020
const [ballotsResponse, statsResponse] = await Promise.all([
21-
fetch('/data/phila_ballots.json'),
22-
fetch('/data/division_stats.json')
21+
fetch('https://codeforphilly.github.io/ballotcure/data/phila_ballots.json'),
22+
fetch('https://codeforphilly.github.io/ballotcure/data/division_stats.json')
2323
]);
2424

2525
if (!ballotsResponse.ok || !statsResponse.ok) {

0 commit comments

Comments
 (0)