fix: api url had extra slash

fix: api url had extra slash
This commit is contained in:
Ben Warzeski
2022-08-24 14:33:02 -04:00
committed by GitHub

View File

@@ -4,7 +4,7 @@ import { configuration } from 'config';
const baseUrl = `${configuration.LMS_BASE_URL}`;
const api = `${baseUrl}/api/`;
const init = `${api}/learner_home/mock/init`;
const init = `${api}learner_home/mock/init`;
export default StrictDict({
api,