Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
voloshinskii committed Jan 17, 2024
1 parent 06a6b4d commit f373c46
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion packages/@core-js/src/Tonkeeper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ export class Tonkeeper {
await this.storage.setItem(this.tonProofStorageKey, JSON.stringify(token));
return token;
} catch (err) {
console.log('33333', err);
await this.storage.removeItem(this.tonProofStorageKey);
}
}
Expand Down
2 changes: 0 additions & 2 deletions packages/@core-js/src/managers/BatteryManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ export class BatteryManager {

await this.fetchBalance();
} catch (err) {
console.log('[battery sendMessage]', err);
throw new Error(err);
}
}
Expand All @@ -145,7 +144,6 @@ export class BatteryManager {
},
);
} catch (err) {
console.log('[battery emulate]', err);
throw new Error(err);
}
}
Expand Down
4 changes: 0 additions & 4 deletions packages/mobile/src/store/nfts/sagas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,6 @@ export function* loadMarketplacesWorker() {
);
const marketplaces: MarketplaceModel[] = resp?.data?.data?.marketplaces || [];

FastImage.preload(
marketplaces.map((marketplace) => ({ uri: marketplace.marketplace_url })),
);

yield put(nftsActions.setLoadedMarketplaces(marketplaces));
} catch (e) {}
}
Expand Down

0 comments on commit f373c46

Please sign in to comment.