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;
}