style: auto-fix linting issues

This commit is contained in:
DanTheMan827 2026-03-20 23:00:41 +00:00 committed by github-actions[bot]
parent 397fc53a46
commit 5c5ea904c8
2 changed files with 6 additions and 6 deletions

View file

@ -98,10 +98,10 @@ export class HiFiClient {
return Buffer.from(`${id}:${secret}`).toString('base64'); return Buffer.from(`${id}:${secret}`).toString('base64');
} }
static setToken(token: string, expiry: number = Date.now() + 60000) { static setToken(token: string, expiry: number = Date.now() + 60000) {
HiFiClient.token = token; HiFiClient.token = token;
HiFiClient.appTokenExpiry = expiry HiFiClient.appTokenExpiry = expiry;
} }
private static async fetchAppToken( private static async fetchAppToken(
signal: AbortSignal = new AbortController().signal, signal: AbortSignal = new AbortController().signal,

View file

@ -2255,7 +2255,7 @@ body.multi-select-mode .track-item:hover {
font-size: 0.9rem; font-size: 0.9rem;
font-weight: 500; font-weight: 500;
z-index: 1000; z-index: 1000;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); box-shadow: 0 4px 20px rgb(0, 0, 0, 0.3);
gap: 12px; gap: 12px;
align-items: center; align-items: center;
} }
@ -2285,7 +2285,7 @@ body.multi-select-mode .track-item:hover {
} }
.selection-bar button:hover { .selection-bar button:hover {
background: rgba(255, 255, 255, 0.2); background: rgb(255, 255, 255, 0.2);
} }
.track-number { .track-number {