fix linting

This commit is contained in:
BlackSigkill 2026-02-09 20:48:02 +01:00
parent 667a861b1d
commit ed579624e2
3 changed files with 4 additions and 4 deletions

View file

@ -212,7 +212,7 @@ class AudioContextManager {
if (this.monoMergerNode) {
try {
this.monoMergerNode.disconnect();
} catch (e) {
} catch {
// Ignore if not connected
}
}
@ -220,7 +220,7 @@ class AudioContextManager {
// Only disconnect destination from analyser to preserve other taps (like Butterchurn)
try {
this.analyser.disconnect(this.audioContext.destination);
} catch (e) {
} catch {
// Ignore if not connected
}

View file

@ -86,7 +86,7 @@ export const apiSettings = {
}
},
async getInstances(type = 'api', sortBySpeed = false) {
async getInstances(type = 'api', _sortBySpeed = false) {
let instancesObj;
const stored = localStorage.getItem(this.STORAGE_KEY);

View file

@ -1755,7 +1755,7 @@ input[type='search']::-webkit-search-cancel-button {
border-radius: 4px;
flex-shrink: 0;
display: inline-block;
background-image: radial-gradient(currentColor 1.2px, transparent 1.3px);
background-image: radial-gradient(currentcolor 1.2px, transparent 1.3px);
background-size: 6px 6px;
background-position: center;
background-repeat: repeat;