Skip to content

Commit 34e89c8

Browse files
Fixed parantheses in src/resources/auth.js
1 parent 13749ea commit 34e89c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/resources/auth.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function auth(config) {
1212
retrieve: (params) => {
1313
const url = `${config.apiURL}/get_auth_backends`;
1414

15-
return api(url, config, 'GET', params).then(res => {
15+
return api(url, config, 'GET', params).then((res) => {
1616
const backends = [];
1717

1818
if (res.result === 'success') {

0 commit comments

Comments
 (0)