Skip to content

Commit

Permalink
fix(lib): importing request function from lib properly
Browse files Browse the repository at this point in the history
  • Loading branch information
leomp12 committed Jul 11, 2019
1 parent 86c2f8c commit 1f381f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/methods/request-search-api.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { _config } from '@ecomplus/utils'
import { IS_BROWSER, API_SEARCH } from './../lib/constants'
import { request } from './../lib/axios'
import request from './../lib/request'

// returns axios request promise
const requestSearchApi = (
Expand Down
2 changes: 1 addition & 1 deletion src/methods/request-store-api.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { _config } from '@ecomplus/utils'
import { IS_BROWSER, API_STORE, API_STORE_CACHE } from './../lib/constants'
import { request } from './../lib/axios'
import request from './../lib/request'

// save Store Cache API status
let isCacheOnline = true
Expand Down

0 comments on commit 1f381f3

Please sign in to comment.