Skip to content

Commit

Permalink
Use a trailing slash when requesting individual lesions
Browse files Browse the repository at this point in the history
  • Loading branch information
danlamanna committed Jan 14, 2025
1 parent bf3c747 commit 590b58d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/services/ajaxActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ class AjaxActions {

async getLesionByID(lesionID) {
try {
const result = await this._ajaxGet(`${API_URL}lesions/${lesionID}`);
const result = await this._ajaxGet(`${API_URL}lesions/${lesionID}/`);
return this._parseData(result);
}
catch (error) {
Expand Down

0 comments on commit 590b58d

Please sign in to comment.