From 81ea141d48db91112a0636c5ab24da87fad3aaca Mon Sep 17 00:00:00 2001 From: edideaur <182119792+edideaur@users.noreply.github.com> Date: Sat, 28 Mar 2026 13:33:03 +0000 Subject: [PATCH] style: auto-fix linting issues --- index.html | 10 +++++++++- js/app.js | 7 ++++--- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 0b81e6c..0b280c7 100644 --- a/index.html +++ b/index.html @@ -4520,7 +4520,15 @@ -

+

diff --git a/js/app.js b/js/app.js index 80eb0c6..d790b49 100644 --- a/js/app.js +++ b/js/app.js @@ -406,9 +406,10 @@ document.addEventListener('DOMContentLoaded', async () => { { const repo = 'https://github.com/monochrome-music/monochrome'; const hash = typeof __COMMIT_HASH__ !== 'undefined' ? __COMMIT_HASH__ : 'dev'; - const commitLink = hash !== 'dev' && hash !== 'unknown' - ? `${hash}` - : hash; + const commitLink = + hash !== 'dev' && hash !== 'unknown' + ? `${hash}` + : hash; const repoLink = `monochrome-music/monochrome`; const html = `Commit ${commitLink} ยท ${repoLink}`; const aboutEl = document.getElementById('about-commit-info');