From 6aad72296c412206be8ff002760a0c6ef3996da9 Mon Sep 17 00:00:00 2001
From: "Philip H." <47042125+pheiduck@users.noreply.github.com>
Date: Thu, 21 Dec 2023 15:47:09 +0000
Subject: [PATCH] fixup: lint errors

---
 src/www/js/app.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/www/js/app.js b/src/www/js/app.js
index 4f28199..4a258d9 100644
--- a/src/www/js/app.js
+++ b/src/www/js/app.js
@@ -288,8 +288,8 @@ new Vue({
     Promise.resolve().then(async () => {
       const currentRelease = await this.api.getRelease();
       const latestRelease = await fetch('https://wg-easy.github.io/wg-easy/changelog.json')
-        .then(res => res.json())
-        .then(releases => {
+        .then((res) => res.json())
+        .then((releases) => {
           const releasesArray = Object.entries(releases).map(([version, changelog]) => ({
             version: parseInt(version, 10),
             changelog,