Address PR review comments.

This commit is contained in:
kialam
2018-11-13 09:53:36 -05:00
parent 44e9d3919d
commit 03f6e52cf1
6 changed files with 18 additions and 18 deletions

View File

@@ -13,7 +13,7 @@ import './app.scss';
const el = document.getElementById('app');
const main = async () => {
const { custom_logo, custom_login_info } = await api.BaseGet(API_ROOT);
const { custom_logo, custom_login_info } = await api.get(API_ROOT);
render(<App logo={custom_logo} loginInfo={custom_login_info} />, el);
};