From 833520c494a06cfbad615363c890e759554b6bac Mon Sep 17 00:00:00 2001 From: igoradamenko Date: Sat, 23 Jun 2018 13:18:12 +0300 Subject: [PATCH] fix typo --- web/app/common/api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/common/api.js b/web/app/common/api.js index 218ca1df..566db403 100644 --- a/web/app/common/api.js +++ b/web/app/common/api.js @@ -10,7 +10,7 @@ export const logOut = () => fetcher.get({ url: `/auth/logout`, overriddenApiBase export const getConfig = () => fetcher.get(`/config`); -// TODO: looks like we can you url from settings here and below +// TODO: looks like we can get url from settings here and below export const find = ({ sort, url }) => fetcher.get(`/find?url=${url}&sort=${sort}&format=tree`); export const last = ({ siteId, max }) => fetcher.get(`/last/${max}?site=${siteId}`);