Skip to content

Commit

Permalink
fix: error message for register flyover calls
Browse files Browse the repository at this point in the history
  • Loading branch information
annipi authored and alexjavabraz committed Oct 21, 2024
1 parent a61efbe commit dbb43cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/services/ApiService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ export default class ApiService {
return new Promise<boolean>((resolve, reject) => {
axios.post(`${ApiService.baseURL}/register-flyover-call`, payload)
.then((response) => resolve(response.data))
.catch(() => reject(new Error('Unable to get feature flags')));
.catch(() => reject(new Error('Unable to register flyover call')));
});
}
}

0 comments on commit dbb43cf

Please sign in to comment.