Skip to content

Commit 29b5eb3

Browse files
fix: Lintのエラーを修正
1 parent f605801 commit 29b5eb3

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
"vite-plugin-checker": "^0.9.1",
6262
"vite-plugin-electron": "^0.29.0",
6363
"vite-tsconfig-paths": "^5.1.4",
64+
"vue-eslint-parser": "^10.1.1",
6465
"vue-tsc": "^2.2.8"
6566
},
6667
"pnpm": {

pnpm-lock.yaml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/miniplayer/App.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ const toActionWindow = () => {
112112
};
113113
const toPlaylistWindow = () => {
114114
windowType.value = "playlist";
115-
fetchPlaylists();
115+
void fetchPlaylists();
116116
};
117117
const toInfoWindow = () => {
118118
windowType.value = "info";
@@ -165,7 +165,7 @@ const isAddingPlaylist = ref(false);
165165
const addPlaylistResult = ref<boolean | null>(null);
166166
const selectedPlaylist = ref<string | null>(null);
167167
const playlists = ref<Playlist[]>([]);
168-
const fetchPlaylists = async () => {
168+
const fetchPlaylists = () => {
169169
window.electron.send("get-playlists", []);
170170
};
171171
let resolveAddPlaylistSong: ((value: boolean) => void) | null = null;

0 commit comments

Comments
 (0)