feat: refs #245362 itemTags #1017

Merged
robert merged 5 commits from 245362-hotFixItemTags into master 2024-11-29 07:42:16 +00:00
1 changed files with 6 additions and 2 deletions
Showing only changes of commit bedf7d8a3a - Show all commits

View File

@ -41,8 +41,12 @@ const fetchAccountExistence = async () => {
};
const fetchMailForwards = async () => {
const response = await axios.get(`MailForwards/${route.params.id}`);
return response.data;
try {
const response = await axios.get(`MailForwards/${route.params.id}`);
return response.data;
} catch {
return null;
}
};
const deleteMailForward = async () => {