diff options
Diffstat (limited to 'app')
| -rw-r--r-- | app/countries.json | 22 | ||||
| -rw-r--r-- | app/travel-advisory/ListCountries.js | 1 | ||||
| -rw-r--r-- | app/visas/ListCountries.js | 1 |
3 files changed, 22 insertions, 2 deletions
diff --git a/app/countries.json b/app/countries.json index 5096d61..e66df12 100644 --- a/app/countries.json +++ b/app/countries.json @@ -45,6 +45,17 @@ "history": [] }, { + "name": "The Republic of Bohemia", + "short": "BHM", + "url": "bohemia", + "visa": true, + "visaInfo": [], + "image": "/countries/bohemia.webp", + "danger": 0, + "settlements": [], + "history": [] + }, + { "name": "Country Warp", "short": "COW", "url": "countrywarp", @@ -256,6 +267,17 @@ "history": [] }, { + "name": "The Republic of Sorena", + "short": "SRN", + "url": "republic-of-sorena", + "visa": true, + "visaInfo": [], + "image": "/countries/sorena.webp", + "danger": 0, + "settlements": [], + "history": [] + }, + { "name": "Sulópolis", "short": "SLP", "url": "sulopolis", diff --git a/app/travel-advisory/ListCountries.js b/app/travel-advisory/ListCountries.js index 865d657..7e59216 100644 --- a/app/travel-advisory/ListCountries.js +++ b/app/travel-advisory/ListCountries.js @@ -31,7 +31,6 @@ export function getDangerLevel(danger, override) { } export function Countries(){ - // eslint-disable-next-line react-hooks/rules-of-hooks const [showModal, setShowModal] = useState(false); const [selectedCountry, setSelectedCountry] = useState(null); const [selectedDangerLevel, setSelectedDangerLevel] = useState(null); diff --git a/app/visas/ListCountries.js b/app/visas/ListCountries.js index 6ca1863..1e926cf 100644 --- a/app/visas/ListCountries.js +++ b/app/visas/ListCountries.js @@ -22,7 +22,6 @@ export function getDangerLevel(danger, override) { } export function Countries(){ - // eslint-disable-next-line react-hooks/rules-of-hooks const [showModal, setShowModal] = useState(false); const [selectedCountry, setSelectedCountry] = useState(null); const [selectedDangerLevel, setSelectedDangerLevel] = useState(null); |
