hi team i'm getting this error while trying to get users data for my app
checking network console, both return this exact error
{
"error": "Driver not found: app-telemetry:(no default)",
"message": "Driver not found: app-telemetry:(no default)",
"code": "not_found"
}
code
(async () => {
const app = await puter.apps.get("stampy");
const users = await app.getUsers({limit: 2, offset: 0});
console.log(users);
})();
(async () => {
const app = (await puter.apps.get("stampy"));
for await (const user of app.users()) {
console.log(user)
}
})();
as a sanity check, the "stampy" app returned proper result

hi team i'm getting this error while trying to get users data for my app
checking network console, both return this exact error
code
as a sanity check, the "stampy" app returned proper result