From c18046b13020a62ded9f34cb8eea6c5c2c5c640f Mon Sep 17 00:00:00 2001 From: "Georgi Ganchev @7DIGIT" Date: Fri, 28 Jun 2024 13:50:17 +0300 Subject: [PATCH] Remove: console.log from UserProfile --- src/blocks/UserProfile/UserProfile.jsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/blocks/UserProfile/UserProfile.jsx b/src/blocks/UserProfile/UserProfile.jsx index 5ff3f04..86572dc 100644 --- a/src/blocks/UserProfile/UserProfile.jsx +++ b/src/blocks/UserProfile/UserProfile.jsx @@ -20,7 +20,6 @@ const { AMAZON_S3_BUCKET } = Config; const fetchCountry = async () => { const { data } = await countrySvc.getActiveCountries(); const currentCountryId = await localStorage.getItem("country_id"); - console.log("currentCountryId", currentCountryId); const currentCountry = data.find((x) => x.country_id === currentCountryId); return currentCountry?.alpha2 === "KZ" ? true : false; }; @@ -49,7 +48,6 @@ export const UserProfile = ({ navigation }) => { }, []); const { data: isKzCountry } = useQuery(["is-kz-country"], fetchCountry); - console.log(isKzCountry); const { isTmpUser, handleRegistrationModalOpen } = useContext(Context); const [languagesData, setLanguagesData] = useState({