Routing bug fixed
diff --git a/public/store/api.js b/public/store/api.js
index 2ca8a89..97c8df9 100644
--- a/public/store/api.js
+++ b/public/store/api.js
@@ -21,7 +21,7 @@
 export const CALL_API = Symbol('CALL_API');
 
 function callApi(apiOpts) {
-  const url = API_ROOT + apiOpts.endpoint;
+  const url = API_ROOT + apiOpts.endpoint + '/';
   const method = apiOpts.method || 'GET';
 
   const headers = {};