0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-08 01:02:51 +00:00

Remove unnecessary guard clause

This commit is contained in:
G.Ambatte
2024-10-09 14:58:20 +13:00
parent 291e16b124
commit 2a9402634f

View File

@@ -50,7 +50,6 @@ async function createHBStore(){
} }
export async function historyCheck(brew){ export async function historyCheck(brew){
if(!IDB) return false;
const historyExists = await IDB.keys(await createHBStore()) const historyExists = await IDB.keys(await createHBStore())
.then((keys)=>{ .then((keys)=>{
return [...keys].some((key)=>{ return [...keys].some((key)=>{