diff --git a/app/components/Profile/Profile.EditModal.tsx b/app/components/Profile/Profile.EditModal.tsx index 73c7257..897f3a7 100644 --- a/app/components/Profile/Profile.EditModal.tsx +++ b/app/components/Profile/Profile.EditModal.tsx @@ -62,6 +62,10 @@ export const ProfileEditModal = (props: { }; function useFetchInfo(url: string) { + if (!props.token) { + url = ""; + } + const { data, isLoading, error } = useSWR(url, useSWRfetcher); return [data, isLoading, error]; } @@ -184,6 +188,10 @@ export const ProfileEditModal = (props: { } }, [avatarModalProps.croppedImage]); + if (!prefData || !loginData || prefError || loginError) { + return <>; + } + return ( <> - - - - - + {props.token ? + <> + + + + + + + : ""} ); };