disabled debugging

This commit is contained in:
Daniel Haller 2024-04-18 00:54:47 +02:00
parent 52b7791dc5
commit 5f55036e17
2 changed files with 5 additions and 4 deletions

View File

@ -2,9 +2,9 @@
<div>
<MainHeader />
<div class="flex flex-col text-white pt-16">
<button @click="deletePlaylist">
<!-- <button @click="deletePlaylist">
Delete Playlist
</button>
</button> -->
<div v-for="p in playlist" class="flex flex-row gap-4 h-40 p-5 bg-[#636363]">
<div class="flex min-w-52 w-52">
<img :src="p.media.images.thumbnail[0].find((p) => p.height === 1080)?.source" alt="Image" class="object-cover rounded-xl" />

View File

@ -65,6 +65,7 @@ function createWindow() {
if (singleInstance(app, mainWindow)) return
// Open the DevTools.
!isProduction &&
mainWindow.webContents.openDevTools({
mode: 'bottom'
})
@ -199,8 +200,8 @@ ipcMain.handle(
})
mainWindow.webContents.once('did-finish-load', () => {
mainWindow.show();
});
mainWindow.show()
})
mainWindow.loadURL(opt.url)
}