diff --git a/Libraries/Storage/AsyncStorage.js b/Libraries/Storage/AsyncStorage.js index 06be6c461..0ba87ed6c 100644 --- a/Libraries/Storage/AsyncStorage.js +++ b/Libraries/Storage/AsyncStorage.js @@ -16,8 +16,8 @@ const NativeModules = require('NativeModules'); // Use RocksDB if available, then SQLite, then file storage. -const RCTAsyncStorage = NativeModules.AsyncSQLiteDBStorage || - NativeModules.AsyncRocksDBStorage || +const RCTAsyncStorage = NativeModules.AsyncRocksDBStorage || + NativeModules.AsyncSQLiteDBStorage || NativeModules.AsyncLocalStorage; /**