From 159954f8eaf46f385fc6a493d42f07fa87b2997f Mon Sep 17 00:00:00 2001 From: a-diarra <68294452+a-diarra@users.noreply.github.com> Date: Thu, 7 May 2026 15:22:48 +0100 Subject: [PATCH 1/2] remove the hash mark from the route builder in the generation of the URL page --- src/utils/oas-sitemap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/oas-sitemap.js b/src/utils/oas-sitemap.js index a99a28281..1aae06c9d 100644 --- a/src/utils/oas-sitemap.js +++ b/src/utils/oas-sitemap.js @@ -26,7 +26,7 @@ const cruds = ["get", "post", "put", "patch", "delete"]; // }, const generatePath = (prefix, id) => { - const path = `${prefix}/#/operations/${id}`; + const path = `${prefix}/operations/${id}`; return { path, From 817e044f923d0caa299849b531ae4b6c339c3a61 Mon Sep 17 00:00:00 2001 From: a-diarra <68294452+a-diarra@users.noreply.github.com> Date: Thu, 7 May 2026 15:36:31 +0100 Subject: [PATCH 2/2] fixing the url generation (again) --- src/utils/oas-sitemap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/oas-sitemap.js b/src/utils/oas-sitemap.js index 1aae06c9d..e546bc87f 100644 --- a/src/utils/oas-sitemap.js +++ b/src/utils/oas-sitemap.js @@ -26,7 +26,7 @@ const cruds = ["get", "post", "put", "patch", "delete"]; // }, const generatePath = (prefix, id) => { - const path = `${prefix}/operations/${id}`; + const path = `${prefix}#/operations/${id}`; return { path,