Fixed calendar and req profile

This commit is contained in:
MaxOvs19
2023-10-27 18:32:37 +03:00
parent 5e69e922f5
commit 6a74ddb424
4 changed files with 8 additions and 6 deletions

View File

@ -73,8 +73,8 @@ export const Navigation = () => {
if (localStorage.getItem("role_status") === "18") {
return;
}
apiRequest(`/profile/${localStorage.getItem("cardId")}`).then(
(profileInfo) => dispatch(setProfileInfo(profileInfo))
apiRequest(`/user/me`).then((profileInfo) =>
dispatch(setProfileInfo(profileInfo.userCard))
);
}, [dispatch]);