Merge pull request #53 from apuc/partner-personal-area

partner-personal-area
This commit is contained in:
NikoM1k 2023-02-27 15:58:52 +02:00 committed by GitHub
commit b568ec699e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,6 +64,9 @@ export const ProfileHeader = () => {
const [isLoggingOut, setIsLoggingOut] = useState(false); const [isLoggingOut, setIsLoggingOut] = useState(false);
useEffect(() => { useEffect(() => {
if (localStorage.getItem('role_status') === '18') {
return
}
apiRequest(`/profile/${localStorage.getItem('cardId')}`) apiRequest(`/profile/${localStorage.getItem('cardId')}`)
.then((profileInfo) => .then((profileInfo) =>
dispatch(setProfileInfo(profileInfo)) dispatch(setProfileInfo(profileInfo))