@trii/components 2.0.28 → 2.0.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -15221,7 +15221,7 @@ async function fetchLabels({ baseUrl, spaceId, signal }) {
|
|
|
15221
15221
|
}
|
|
15222
15222
|
async function fetchContact({ baseUrl, spaceId, contactId, signal }) {
|
|
15223
15223
|
const urls = getApiUrls(baseUrl, spaceId);
|
|
15224
|
-
const url = joinUrl(urls.CONTACTS,
|
|
15224
|
+
const url = joinUrl(urls.CONTACTS, `/contacts/${encodeURIComponent(contactId)}`);
|
|
15225
15225
|
return requestJson({ url, signal });
|
|
15226
15226
|
}
|
|
15227
15227
|
async function updateEntity({ baseUrl, spaceId, entityType, entityId, body, signal }) {
|