diff --git a/src/context/UserContext.js b/src/context/UserContext.js index 8fb0a5a..c8baf15 100644 --- a/src/context/UserContext.js +++ b/src/context/UserContext.js @@ -39,13 +39,10 @@ export function UserContextProvider({ children }) { }, [language]); function changeUserLanguage(newLanguage) { - console.log(`userLanguage`, newLanguage); setLanguage(newLanguage); localStorage.setItem("userLanguage", newLanguage); } function changeCountry(newCountry) { - console.log(`newCountry`, newCountry); - setCountry(newCountry); localStorage.setItem("userCountry", JSON.stringify(newCountry)); }