Skip to content

Commit c3c7d35

Browse files
apophisnowclaude
andcommitted
Fix lint formatting issues
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 5d321ef commit c3c7d35

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

src/components/SendspinPlayer.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,10 @@ onMounted(() => {
347347
if (!shouldBePlaying || !audioRef.value) return;
348348
349349
audioRef.value.play().catch((error) => {
350-
console.warn("Sendspin: Failed to recover audio element playback:", error);
350+
console.warn(
351+
"Sendspin: Failed to recover audio element playback:",
352+
error,
353+
);
351354
});
352355
});
353356
}

src/layouts/default/PlayerOSD/PlayerFullscreen.vue

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
z-index="9999"
88
persistent
99
>
10-
<v-card class="fullscreen-player-card" :style="{ background: backgroundColor }">
10+
<v-card
11+
class="fullscreen-player-card"
12+
:style="{ background: backgroundColor }"
13+
>
1114
<v-toolbar class="v-toolbar-default" color="transparent">
1215
<template #prepend>
1316
<Button icon @click="store.showFullscreenPlayer = false">
@@ -127,7 +130,9 @@
127130

128131
<!-- subtitle: album -->
129132
<v-card-subtitle
130-
v-else-if="store.activePlayer?.current_media?.album && showAlbumSubtitle"
133+
v-else-if="
134+
store.activePlayer?.current_media?.album && showAlbumSubtitle
135+
"
131136
:style="`font-size: ${subTitleFontSize};cursor:pointer;`"
132137
@click="onAlbumClick"
133138
>
@@ -1504,7 +1509,6 @@ watchEffect(() => {
15041509
</script>
15051510

15061511
<style scoped>
1507-
15081512
.fullscreen-player-card {
15091513
overflow: hidden;
15101514
height: 100%;
@@ -1764,5 +1768,4 @@ button {
17641768
padding: 8px 0;
17651769
}
17661770
}
1767-
17681771
</style>

src/views/PartyModeGuestView.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -329,9 +329,7 @@ const addToQueue = async (item: Track | Artist, position: "next" | "end") => {
329329
if (position === "end" && addQueueTokens.value <= 0) {
330330
const minutesUntilNext = getTimeUntilNextAddQueueToken();
331331
toast.warning(
332-
$t("providers.party_mode.add_queue_limit_reached", [
333-
minutesUntilNext,
334-
]),
332+
$t("providers.party_mode.add_queue_limit_reached", [minutesUntilNext]),
335333
);
336334
return;
337335
}

0 commit comments

Comments
 (0)