David Pomerenke
commited on
Commit
·
51a302e
1
Parent(s):
723f963
Use correct map file
Browse files
frontend/public/countries-110m.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
frontend/public/countries.json
DELETED
The diff for this file is too large to render.
See raw diff
|
|
frontend/src/App.js
CHANGED
@@ -33,7 +33,7 @@ function App () {
|
|
33 |
}, [])
|
34 |
|
35 |
useEffect(() => {
|
36 |
-
fetch('/countries.json')
|
37 |
.then(response => {
|
38 |
if (!response.ok) {
|
39 |
throw new Error('Network response was not ok')
|
|
|
33 |
}, [])
|
34 |
|
35 |
useEffect(() => {
|
36 |
+
fetch('/countries-110m.json')
|
37 |
.then(response => {
|
38 |
if (!response.ok) {
|
39 |
throw new Error('Network response was not ok')
|