We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80ec41f commit d5a2ad3Copy full SHA for d5a2ad3
1 file changed
src/components/BMDashboard/Issue/Issue.jsx
@@ -163,11 +163,11 @@ function Issue() {
163
}
164
await axios
165
.post(`${ENDPOINTS.BM_ISSUE_FORM}`, currentFormData)
166
- .then(res => {
+ .then(() => {
167
toast.success('Issue Form Submitted Successfully');
168
return true;
169
})
170
- .catch(err => {
+ .catch(() => {
171
toast.error('Issue Form Submission Failed');
172
return false;
173
});
0 commit comments