Skip to content

Commit

Permalink
remove dirty error log
Browse files Browse the repository at this point in the history
  • Loading branch information
bh2smith committed Sep 17, 2024
1 parent 63ab835 commit 96f4b3d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/lib/bundler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ async function handleRequest<T>(clientMethod: () => Promise<T>): Promise<T> {
try {
return await clientMethod();
} catch (error) {
console.log(error);
if (error instanceof HttpRequestError) {
if (error.status === 401) {
throw new Error("Unauthorized request. Please check your API key.");
Expand Down

0 comments on commit 96f4b3d

Please sign in to comment.