@transitive-sdk/utils-web 0.12.4 → 0.12.5
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/client/hooks.jsx +1 -1
- package/package.json +1 -1
package/client/hooks.jsx
CHANGED
|
@@ -224,7 +224,7 @@ export const useCapability = ({ capability, name, userId, deviceId,
|
|
|
224
224
|
listeners[name] = [done];
|
|
225
225
|
|
|
226
226
|
const baseUrl = `http${ssl ? 's' : ''}://portal.${host}`;
|
|
227
|
-
const params = new URLSearchParams({userId, deviceId});
|
|
227
|
+
const params = new URLSearchParams({ userId, deviceId });
|
|
228
228
|
// filename without extension as we'll try multiple
|
|
229
229
|
const fileBasename = `${baseUrl}/running/${capability}/dist/${name}`;
|
|
230
230
|
|