fix(js): log out unused error value

This commit is contained in:
Gabe Kangas 2024-11-08 10:05:53 -08:00 committed by GitHub
parent ecba3cc003
commit 25cd9b6d53
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,6 +23,7 @@ class ChatService {
const response = await getUnauthedData(`${ENDPOINT}?accessToken=${accessToken}`);
return response;
} catch (e) {
console.error(e);
return [];
}
}