diff --git a/src/client/actions/comicinfo.actions.tsx b/src/client/actions/comicinfo.actions.tsx index 702edd3..f117b44 100644 --- a/src/client/actions/comicinfo.actions.tsx +++ b/src/client/actions/comicinfo.actions.tsx @@ -29,7 +29,7 @@ export const comicinfoAPICall = (options) => async (dispatch) => { type: CV_API_CALL_IN_PROGRESS, inProgress: true, }); - const serviceURI = COMICBOOKINFO_SERVICE_URI + options.callURIAction; + const serviceURI = `${COMICBOOKINFO_SERVICE_URI}/${options.callURIAction}`; const response = await http(serviceURI, { method: options.callMethod, params: options.callParams, diff --git a/src/client/components/Navbar.tsx b/src/client/components/Navbar.tsx index d42bcab..b1c1db3 100644 --- a/src/client/components/Navbar.tsx +++ b/src/client/components/Navbar.tsx @@ -8,7 +8,7 @@ const Navbar: React.FunctionComponent = (props) => {