Skip to content

Commit

Permalink
fix: add missing trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanttV committed Oct 16, 2024
1 parent e2e4003 commit 8a4eecf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/account-settings/site-language/service.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export async function postSetLang(code) {
headers: {
Accept: 'application/json',
'X-Requested-With': 'XMLHttpRequest',
}
},
};
const url = `${getConfig().LMS_BASE_URL}/i18n/setlang/`;

Check warning on line 32 in src/account-settings/site-language/service.js

View check run for this annotation

Codecov / codecov/patch

src/account-settings/site-language/service.js#L32

Added line #L32 was not covered by tests
formData.append('language', code);
Expand Down

0 comments on commit 8a4eecf

Please sign in to comment.