fix api /me

This commit is contained in:
Mikola
2023-12-25 20:59:25 +03:00
parent 80ebf85347
commit ce6c2d965a
3 changed files with 17 additions and 15 deletions

View File

@ -34,13 +34,14 @@ export const ProfileHeader = () => {
// }, [dispatch]);
useEffect(() => {
if (!Object.keys(profileInfo).length) apiRequest(`/user/me`).then((profileInfo) => {
dispatch(
setProfileInfo(
profileInfo.userCard ? profileInfo.userCard : profileInfo
)
);
});
if (!Object.keys(profileInfo).length)
apiRequest(`/user/me`).then((profileInfo) => {
dispatch(
setProfileInfo(
profileInfo.userCard ? profileInfo.userCard : profileInfo
)
);
});
}, []);
const handler = () => {
@ -49,7 +50,7 @@ export const ProfileHeader = () => {
dispatch(auth(false));
setIsLoggingOut(false);
navigate("/auth");
dispatch(setProfileInfo({}))
dispatch(setProfileInfo({}));
};
return (