mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
remove unused var
This commit is contained in:
@@ -49,7 +49,7 @@ const getAlbumArtists = async (hash: string) => {
|
||||
};
|
||||
|
||||
const getAlbumBio = async (hash: string) => {
|
||||
const { data, status, error } = await useAxios({
|
||||
const { data, status } = await useAxios({
|
||||
url: state.settings.uri + "/album/bio",
|
||||
props: {
|
||||
hash: hash,
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
import axios from "axios";
|
||||
import { Playlist, Track } from "../../interfaces";
|
||||
import { Notification, NotifType } from "../../stores/notification";
|
||||
import state from "../state";
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
import { Track, AlbumInfo, Artist } from "./../interfaces";
|
||||
import { ref } from "@vue/reactivity";
|
||||
import { reactive } from "vue";
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ function focusSearchBox() {
|
||||
export default function (queue: typeof useQStore) {
|
||||
const q = queue();
|
||||
window.addEventListener("keydown", (e: KeyboardEvent) => {
|
||||
let target = e.target as HTMLElement;
|
||||
const target = e.target as HTMLElement;
|
||||
let ctrlKey = e.ctrlKey;
|
||||
|
||||
function FocusedOnInput(target: HTMLElement) {
|
||||
|
||||
Reference in New Issue
Block a user