()
| 36 | ]); |
| 37 | |
| 38 | const BlueAppComponent = () => { |
| 39 | useEffect(() => { |
| 40 | restoreSavedPreferredFiatCurrencyAndExchangeFromStorage().catch(error => { |
| 41 | console.error('Failed to restore preferred currency and exchange rates on startup:', error); |
| 42 | }); |
| 43 | }, []); |
| 44 | |
| 45 | return <App />; |
| 46 | }; |
| 47 | |
| 48 | AppRegistry.registerComponent('BlueWallet', () => BlueAppComponent); |
nothing calls this directly
no test coverage detected