fixed typo in URL with multiple ?'s

This commit is contained in:
Peter Morton 2023-12-21 14:43:30 -06:00
parent 3f6f583a94
commit 664aa5b350

View File

@ -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 }) => {