From 664aa5b350d20b8086f3de7dd84889bee29519f8 Mon Sep 17 00:00:00 2001 From: "Peter.Morton" Date: Thu, 21 Dec 2023 14:43:30 -0600 Subject: [PATCH] fixed typo in URL with multiple ?'s --- src/helpers/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/index.ts b/src/helpers/index.ts index 6c5c48b..f1e66b1 100644 --- a/src/helpers/index.ts +++ b/src/helpers/index.ts @@ -48,7 +48,7 @@ export async function getTenantProperty( return await axios .get( - `${channelAutomationAPI.host}/tenant-properties-service/${channelAutomationAPI.tenant}/properties?fields=name,value,lastModifiedDate,lastModifiedBy?q=${key}`, + `${channelAutomationAPI.host}/tenant-properties-service/${channelAutomationAPI.tenant}/properties?fields=name,value,lastModifiedDate,lastModifiedBy?&q=${key}`, { headers }, ) .then((response: { data: HydraCollection }) => {