style: auto-fix linting issues

This commit is contained in:
binimum 2026-02-16 18:20:50 +00:00 committed by github-actions[bot]
parent 48a1a87104
commit 2d0ab393a7

View file

@ -934,7 +934,7 @@ function getLyricsHighlightColor() {
function updateLyricsTheme() {
const highlightColor = getLyricsHighlightColor();
document.querySelectorAll('am-lyrics').forEach(el => {
document.querySelectorAll('am-lyrics').forEach((el) => {
el.setAttribute('highlight-color', highlightColor);
});
}
@ -946,7 +946,7 @@ const themeObserver = new MutationObserver(() => {
themeObserver.observe(document.documentElement, {
attributes: true,
attributeFilter: ['data-theme', 'style']
attributeFilter: ['data-theme', 'style'],
});
async function renderLyricsComponent(container, track, audioPlayer, lyricsManager) {