Compare commits

...

1 Commits

Author SHA1 Message Date
Kendell Joseph
e3ab57c6a9 chore: removes questionmark character 2024-03-07 15:24:58 -05:00

View File

@@ -97,7 +97,10 @@ export const createPayloadRequest = async ({
port: urlProperties.port,
protocol: urlProperties.protocol,
query: urlProperties.search
? QueryString.parse(urlProperties.search, { strictNullHandling: true })
? QueryString.parse(urlProperties.search, {
ignoreQueryPrefix: true,
strictNullHandling: true,
})
: {},
routeParams: params || {},
search: urlProperties.search,