Ravisaksoft
Results
2
comments of
Ravisaksoft
**Initialisation Code** App.js (startup) ``` try { const key = await dbEncryption(); await DBConfig(key); } catch (e) { console.log("Error ", e); } ``` **Here is the dbEncryption file** ``` import...
The issue is now resolved. The root cause was that Login.js was being executed before App.js, which caused the database to initialize on the login screen instead of during the...