@kaspernj/api-maker 1.0.398 → 1.0.399

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaspernj/api-maker",
3
- "version": "1.0.398",
3
+ "version": "1.0.399",
4
4
  "type": "module",
5
5
  "description": "",
6
6
  "main": "index.js",
@@ -120,7 +120,7 @@ const Route = memo(shapeComponent(class Route extends BaseComponent {
120
120
  break
121
121
  }
122
122
 
123
- const routePart = this.routeParts[pathPartIndex]
123
+ const routePart = decodeURIComponent(this.routeParts[pathPartIndex])
124
124
 
125
125
  if (pathPart.startsWith(":") && routePart) {
126
126
  const paramName = pathPart.slice(1, pathPart.length)