From 7eed0d44e74ca045211273ef4e5e9b7d30b3874a Mon Sep 17 00:00:00 2001 From: SamidyFR <168582143+SamidyFR@users.noreply.github.com> Date: Mon, 19 Jan 2026 21:12:28 +0000 Subject: [PATCH] style: auto-fix linting issues --- js/accounts/pocketbase.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/accounts/pocketbase.js b/js/accounts/pocketbase.js index a0b5ac0..749688a 100644 --- a/js/accounts/pocketbase.js +++ b/js/accounts/pocketbase.js @@ -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 []; };