From bade09c24c1f2cafaea48e8b9f3cdb34c38027ad Mon Sep 17 00:00:00 2001 From: Charlie Humphreys Date: Thu, 26 May 2022 04:46:07 +0000 Subject: [PATCH] linting --- server/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/app.js b/server/app.js index 534ed1e48..da81dbd42 100644 --- a/server/app.js +++ b/server/app.js @@ -190,7 +190,7 @@ app.get('/user/:username', async (req, res, next)=>{ }); if(googleBrews && googleBrews.length > 0) { - for (const brew of brews.filter(brew => brew.googleId)) { + for (const brew of brews.filter((brew)=>brew.googleId)) { const match = googleBrews.findIndex((b)=>b.editId === brew.editId); if(match !== -1) { brew.googleId = googleBrews[match].googleId;