style: auto-fix linting issues
This commit is contained in:
parent
397fc53a46
commit
5c5ea904c8
2 changed files with 6 additions and 6 deletions
|
|
@ -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,
|
||||||
|
|
|
||||||
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue