remove console.log
Some checks failed
V3 Preview Deployment / Deploy-Preview (push) Has been cancelled

This commit is contained in:
Kentai Radiquum 2025-03-22 23:26:05 +05:00
parent 1c5b551dc5
commit b79c07f4c2
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
2 changed files with 0 additions and 2 deletions

View file

@ -157,7 +157,6 @@ export const ReleasePlayer = (props: { id: number }) => {
} }
}) })
.catch((err) => { .catch((err) => {
console.log(err);
_setError("Ошибка получение ответа от сервера"); _setError("Ошибка получение ответа от сервера");
return; return;
}); });

View file

@ -49,7 +49,6 @@ export function BookmarksPage(props: { profile_id?: number }) {
// eslint-disable-next-line react-hooks/rules-of-hooks // eslint-disable-next-line react-hooks/rules-of-hooks
const { data, error } = useSWR(url, useSWRfetcher); const { data, error } = useSWR(url, useSWRfetcher);
console.log(data, error);
return [data, error]; return [data, error];
} }