Skip to content

Commit

Permalink
fix: hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
kujo205 committed Jan 14, 2025
1 parent bdcb4dd commit 0cfb3d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/dashboard/my_playlists/+page.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ export const actions: Actions = {
event
},
async ({ form, userId, data }) => {
console.log('[playlist update] updating a playlist start ', data);
console.log('[playlist update] updating a playlist start ', data.playlist_id);

console.log('data', data);

await ytMusicController.updatePlaylist(userId, data);
await ytMusicController.updatePlaylist(userId, data.playlist_id);

console.log('[playlist update] updating a playlist end');

Expand Down

0 comments on commit 0cfb3d0

Please sign in to comment.