forked from polka_billy/porridger
Removed builtin static video file
Switched from CORS to proxy for dev
This commit is contained in:
@ -10,13 +10,10 @@ const useFetch = (url, params, initialData) => {
|
||||
.then(res => {
|
||||
if (!res.ok) {
|
||||
switch (res.status) {
|
||||
case 401: {
|
||||
case 401:
|
||||
throw new Error("Ошибка авторизации")
|
||||
}
|
||||
case 404: {
|
||||
new Error("Объект не найден")
|
||||
}
|
||||
break
|
||||
case 404:
|
||||
throw new Error("Объект не найден")
|
||||
default: {
|
||||
throw new Error("Ошибка ответа от сервера")
|
||||
}
|
||||
@ -32,6 +29,10 @@ const useFetch = (url, params, initialData) => {
|
||||
.catch(err => {
|
||||
setError("Ошибка сети")
|
||||
setLoading(false)
|
||||
|
||||
if (import.meta.env.DEV) {
|
||||
console.log(url, params, err)
|
||||
}
|
||||
})
|
||||
}, [url, params])
|
||||
|
||||
|
Reference in New Issue
Block a user