Skip to content

Commit

Permalink
Removed console.error from service
Browse files Browse the repository at this point in the history
  • Loading branch information
frangeris committed Oct 13, 2024
1 parent d2778c5 commit ed542a4
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ export class Service<P> {
const data = (await res.json()) as { data: T };
return data?.data ?? null;
} catch (err) {
console.error(err);
return null;
}
})();
Expand Down

0 comments on commit ed542a4

Please sign in to comment.