fix(ci): Fix lint errors thrown in CI

This commit is contained in:
Bouncey
2019-02-16 13:51:46 +00:00
committed by mrugesh mohapatra
parent 3f25ed051d
commit c0104faa38
3 changed files with 56 additions and 62 deletions

View File

@@ -1,6 +1,6 @@
import axios from 'axios';
const base = `/internal`;
const base = '/internal';
function get(path) {
return axios.get(`${base}${path}`);
@@ -46,7 +46,6 @@ export function getArticleById(shortId) {
/** POST **/
export function postReportUser(body) {
return post('/user/report-user', body);
}