Skip to content
This repository was archived by the owner on May 28, 2023. It is now read-only.

Commit 0e7a99f

Browse files
committed
fix(lint): change back let to const on backend url var:
1 parent 48a21a9 commit 0e7a99f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/catalog.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export default ({config, db}) => async function (req, res, body) {
8484
}
8585

8686
// pass the request to elasticsearch
87-
let elasticBackendUrl = adjustBackendProxyUrl(req, indexName, entityType, config)
87+
const elasticBackendUrl = adjustBackendProxyUrl(req, indexName, entityType, config)
8888
const userToken = requestBody.groupToken
8989

9090
// Decode token and get group id

0 commit comments

Comments
 (0)