Skip to content

Commit

Permalink
fix: remove error log
Browse files Browse the repository at this point in the history
  • Loading branch information
mwiercinska committed Oct 9, 2024
1 parent ffe298d commit 0c19707
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lib/src/iconMapping.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@ const setLedgerIconMapping = async () => {
ledgerMapping = data;
return ledgerMapping;
})
.catch((e) => {
console.error(e);
.catch(() => {
return null;
})
.finally(() => {
Expand All @@ -73,8 +72,7 @@ const setCoinGeckoIconMapping = async () => {
coinGeckoMapping = data;
return coinGeckoMapping;
})
.catch((e) => {
console.error(e);
.catch(() => {
return null;
})
.finally(() => {
Expand Down

0 comments on commit 0c19707

Please sign in to comment.