From a129f12ddbe7358672ac8a749af09e3af43e4b0c Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Mon, 25 Aug 2025 17:17:10 +0200 Subject: [PATCH] chore: fixes in playground --- packages/experiments-playground/src/router/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/experiments-playground/src/router/index.ts b/packages/experiments-playground/src/router/index.ts index 3f9c1bb3..0fec1f8d 100644 --- a/packages/experiments-playground/src/router/index.ts +++ b/packages/experiments-playground/src/router/index.ts @@ -119,7 +119,7 @@ const r_profiles_detail = normalizeRouteRecord({ // this version handles all kind of params but in practice, // the generation should recognize this is a single required param // and therefore userId is of type number - userId: PARAM_PARSER_INT, + userId: [PARAM_PARSER_INT], }, ['profiles', 1] ), -- 2.47.3