fix: user cannot create duplicate links (#680)

This commit is contained in:
Aaryan Khandelwal 2023-04-03 16:22:37 +05:30 committed by GitHub
parent a63c551e75
commit 1b30e4b57f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 28 additions and 14 deletions

View file

@ -343,7 +343,7 @@ class ProjectIssuesServices extends APIService {
)
.then((response) => response?.data)
.catch((error) => {
throw error?.response?.data;
throw error?.response;
});
}