diff --git a/app/components/Profile/Profile.EditLoginModal.tsx b/app/components/Profile/Profile.EditLoginModal.tsx index 6239438..0e11d79 100644 --- a/app/components/Profile/Profile.EditLoginModal.tsx +++ b/app/components/Profile/Profile.EditLoginModal.tsx @@ -44,6 +44,7 @@ export const ProfileEditLoginModal = (props: { _setLoginLength(data.login.length); setLoading(false); }); + // eslint-disable-next-line react-hooks/exhaustive-deps }, [props.isOpen]); function handleInput(e: any) { diff --git a/app/components/Profile/Profile.EditModal.tsx b/app/components/Profile/Profile.EditModal.tsx index d17cc26..805e0f8 100644 --- a/app/components/Profile/Profile.EditModal.tsx +++ b/app/components/Profile/Profile.EditModal.tsx @@ -69,15 +69,15 @@ export const ProfileEditModal = (props: { 9: "Неизвестно", }; - function _fetchInfo(url: string) { + function useFetchInfo(url: string) { const { data, isLoading, error } = useSWR(url, fetcher); return [data, isLoading, error]; } - const [prefData, prefLoading, prefError] = _fetchInfo( + const [prefData, prefLoading, prefError] = useFetchInfo( `${ENDPOINTS.user.settings.my}?token=${props.token}` ); - const [loginData, loginLoading, loginError] = _fetchInfo( + const [loginData, loginLoading, loginError] = useFetchInfo( `${ENDPOINTS.user.settings.login.info}?token=${props.token}` ); @@ -141,6 +141,7 @@ export const ProfileEditModal = (props: { } }); } + // eslint-disable-next-line react-hooks/exhaustive-deps }, [avatarUri]); return ( diff --git a/app/components/Profile/Profile.EditSocialModal.tsx b/app/components/Profile/Profile.EditSocialModal.tsx index f4d496f..4fdfd3e 100644 --- a/app/components/Profile/Profile.EditSocialModal.tsx +++ b/app/components/Profile/Profile.EditSocialModal.tsx @@ -69,8 +69,10 @@ export const ProfileEditSocialModal = (props: { }); setLoading(false); }); + // eslint-disable-next-line react-hooks/exhaustive-deps }, [props.isOpen]); + function handleInput(e: any) { const social = { ...socials, diff --git a/app/components/Profile/Profile.EditStatusModal.tsx b/app/components/Profile/Profile.EditStatusModal.tsx index 70dc296..62d7c0d 100644 --- a/app/components/Profile/Profile.EditStatusModal.tsx +++ b/app/components/Profile/Profile.EditStatusModal.tsx @@ -21,6 +21,7 @@ export const ProfileEditStatusModal = (props: { useEffect(() => { _setStatus(props.status); _setStringLength(props.status.length); + // eslint-disable-next-line react-hooks/exhaustive-deps }, [props.isOpen]); function handleInput(e: any) { diff --git a/app/components/Profile/Profile.Stats.tsx b/app/components/Profile/Profile.Stats.tsx index c20099b..214c1cb 100644 --- a/app/components/Profile/Profile.Stats.tsx +++ b/app/components/Profile/Profile.Stats.tsx @@ -65,6 +65,7 @@ export const ProfileStats = (props: { ); chart.render(); } + // eslint-disable-next-line react-hooks/exhaustive-deps }, []); return ( diff --git a/app/components/Profile/Profile.WatchDynamic.tsx b/app/components/Profile/Profile.WatchDynamic.tsx index 66c4b0a..1abd8e4 100644 --- a/app/components/Profile/Profile.WatchDynamic.tsx +++ b/app/components/Profile/Profile.WatchDynamic.tsx @@ -91,6 +91,7 @@ export const ProfileWatchDynamic = (props: { watchDynamic: Array }) => { ); chart.render(); } + // eslint-disable-next-line react-hooks/exhaustive-deps }, []); return ( diff --git a/app/pages/MobileMenuPage.tsx b/app/pages/MobileMenuPage.tsx index de04e28..450e42b 100644 --- a/app/pages/MobileMenuPage.tsx +++ b/app/pages/MobileMenuPage.tsx @@ -5,6 +5,7 @@ import Link from "next/link"; import { useRouter } from "next/navigation"; import { SettingsModal } from "#/components/SettingsModal/SettingsModal"; import { useEffect, useState } from "react"; +import Image from "next/image"; export const MenuPage = () => { const userStore = useUserStore(); @@ -15,6 +16,7 @@ export const MenuPage = () => { if (!userStore.user) { router.push("/"); } + // eslint-disable-next-line react-hooks/exhaustive-deps }, [userStore.user]); return ( @@ -28,8 +30,10 @@ export const MenuPage = () => { >
-