diff --git a/ui/src/status/apis/index.js b/ui/src/status/apis/index.js index 4f839a5c7e..81044eaeb0 100644 --- a/ui/src/status/apis/index.js +++ b/ui/src/status/apis/index.js @@ -1,3 +1,8 @@ import {get} from 'utils/ajax' -export const getJSONFeed = url => get(url) +import {fixtureJSONFeed} from 'src/status/fixtures' +// TODO: remove async/await & object return, uncomment get(url) when proxy route implemented +export const getJSONFeed = async url => { + return await {data: fixtureJSONFeed} + // get(url) +}