Skip to content

Commit

Permalink
2018-2020 data bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Sahar-behpour committed Mar 19, 2024
1 parent 599bbcb commit f8a1154
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ package.json
node_modules
package-lock.json
.DS_STORE
.vscode
TODO

2 changes: 1 addition & 1 deletion src/utils/EpiTrackerData.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export class EpiTrackerData {
return data.map((item) => ({
...item,
state: statesMap.get(item.state_fips).label,
county: countiesMap.get(item.county_fips).label,
county: countiesMap.get(item.county_fips)?.label,
}));
}

Expand Down

0 comments on commit f8a1154

Please sign in to comment.