Skip to content

Commit

Permalink
[ML] Fix type check errs
Browse files Browse the repository at this point in the history
  • Loading branch information
lcawl committed Dec 30, 2020
1 parent 7c28960 commit 7befcf7
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ import { useAppDependencies } from '../app_dependencies';

export const useDocumentationLinks = () => {
const deps = useAppDependencies();
const { ELASTIC_WEBSITE_URL, DOC_LINK_VERSION, ELASTICSEARCH_DOCS } = deps.docLinks;
const { ELASTIC_WEBSITE_URL, DOC_LINK_VERSION } = deps.docLinks;
return {
esDocBasePath: `${ELASTICSEARCH_DOCS}`,
esIndicesCreateIndex: deps.docLinks.links.apis.createIndex,
esPluginDocBasePath: `${ELASTIC_WEBSITE_URL}guide/en/elasticsearch/plugins/${DOC_LINK_VERSION}/`,
esQueryDsl: deps.docLinks.links.query.queryDsl,
Expand Down

0 comments on commit 7befcf7

Please sign in to comment.