From 558df133e1d1112c0b3f733b3cd073154228d1de Mon Sep 17 00:00:00 2001 From: SamidyFR <168582143+SamidyFR@users.noreply.github.com> Date: Wed, 8 Apr 2026 18:57:24 +0000 Subject: [PATCH] style: auto-fix linting issues --- js/profile.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/js/profile.js b/js/profile.js index 1ca0012..3574a8d 100644 --- a/js/profile.js +++ b/js/profile.js @@ -197,10 +197,11 @@ export async function loadProfile(username) { const img = document.createElement('img'); img.src = statusObj.image; - img.style.cssText = 'width: 20px; height: 20px; border-radius: 2px; vertical-align: middle; margin-right: 0.5rem;'; + img.style.cssText = + 'width: 20px; height: 20px; border-radius: 2px; vertical-align: middle; margin-right: 0.5rem;'; const link = document.createElement('a'); - if (statusObj.link.startsWith("/")) { + if (statusObj.link.startsWith('/')) { link.href = statusObj.link; } link.className = 'status-link';