@rws-framework/client 2.23.0 → 2.23.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rws-framework/client",
3
3
  "private": false,
4
- "version": "2.23.0",
4
+ "version": "2.23.1",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
7
7
  "docs": "typedoc --tsconfig ./tsconfig.json"
@@ -111,7 +111,7 @@ export const backend = {
111
111
  let finalRoute = routeName;
112
112
 
113
113
  if(routeName.indexOf(prefixName) === -1){
114
- finalRoute = `${prefixName}:${routeName}`;
114
+ finalRoute = `${routeName}`;
115
115
  }
116
116
 
117
117
  return finalRoute;