@adventurelabs/scout-core 1.0.52 → 1.0.53
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/helpers/devices.js +0 -2
- package/package.json +1 -1
package/dist/helpers/devices.js
CHANGED
|
@@ -6,8 +6,6 @@ export async function get_devices_by_herd(herd_id, client) {
|
|
|
6
6
|
const { data, error } = await client.rpc("get_devices_for_herd", {
|
|
7
7
|
herd_id_caller: herd_id,
|
|
8
8
|
});
|
|
9
|
-
console.log(`[get_devices_by_herd] Raw RPC response:`, data);
|
|
10
|
-
console.log(`[get_devices_by_herd] First device sample:`, data?.[0]);
|
|
11
9
|
if (!data) {
|
|
12
10
|
return IWebResponse.error("No devices found").to_compatible();
|
|
13
11
|
}
|