Skip to content

Commit

Permalink
kill console
Browse files Browse the repository at this point in the history
  • Loading branch information
OlenaIa committed Jan 26, 2024
1 parent fb7a8e1 commit 20267cc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/components/Header/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
<div className='container'>
Expand Down
1 change: 0 additions & 1 deletion src/redux/accounts/operationAccounts.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 20267cc

Please sign in to comment.