style: auto-fix linting issues

This commit is contained in:
SamidyFR 2026-01-19 21:12:28 +00:00 committed by github-actions[bot]
parent c3ffefc74c
commit 7eed0d44e7

View file

@ -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 [];
};