style: auto-fix linting issues
This commit is contained in:
parent
c3ffefc74c
commit
7eed0d44e7
1 changed files with 2 additions and 1 deletions
|
|
@ -405,7 +405,8 @@ const syncManager = {
|
|||
|
||||
const getAll = async (store) => {
|
||||
if (database && typeof database.getAll === 'function') return database.getAll(store);
|
||||
if (database && database.db && typeof database.db.getAll === 'function') return database.db.getAll(store);
|
||||
if (database && database.db && typeof database.db.getAll === 'function')
|
||||
return database.db.getAll(store);
|
||||
return [];
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue