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

View File

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