From 20267ccd0f397d9bab107a567f15341c9d22c736 Mon Sep 17 00:00:00 2001 From: OlenaIa <121794911+OlenaIa@users.noreply.github.com> Date: Fri, 26 Jan 2024 14:39:49 +0200 Subject: [PATCH] kill console --- src/components/Header/Header.jsx | 1 - src/redux/accounts/operationAccounts.js | 1 - 2 files changed, 2 deletions(-) diff --git a/src/components/Header/Header.jsx b/src/components/Header/Header.jsx index ecfcb87..ee15e55 100644 --- a/src/components/Header/Header.jsx +++ b/src/components/Header/Header.jsx @@ -7,7 +7,6 @@ import { selectAccountId, selectProfileId } from '../../redux/chosenIdSlice'; export const Header = () => { const accountId = useSelector(selectAccountId); const profileId = useSelector(selectProfileId); - console.log('accountId', accountId, 'profileId', profileId); return (
diff --git a/src/redux/accounts/operationAccounts.js b/src/redux/accounts/operationAccounts.js index 0b42498..a2b211c 100644 --- a/src/redux/accounts/operationAccounts.js +++ b/src/redux/accounts/operationAccounts.js @@ -26,7 +26,6 @@ const getAccounts = async (page, thunkAPI) => { }; const getProfilesByAccountId = async (accountId, thunkAPI) => { try { - console.log('accountId in thank', accountId); const response = await axios.get(`/accounts/${accountId}/profiles`); return response.data; }