fix: fix a bug related to fetcher.js

added optional chaining in catch block as there are edge cases where some property on error might not be defined
This commit is contained in:
zyachel 2022-05-21 14:52:28 +05:30
parent d8515d5edd
commit 6ad2269951

View file

@ -40,7 +40,7 @@ const fetcher = async resourceStr => {
return data;
} catch (err) {
if (err.response.status === 404) throw new AppError('Not found', 404);
if (err.response?.status === 404) throw new AppError('Not found', 404);
else throw err;
}
};