diff --git a/src/components/playlist/PlaylistView.tsx b/src/components/playlist/PlaylistView.tsx index e1abe78..0612d0b 100644 --- a/src/components/playlist/PlaylistView.tsx +++ b/src/components/playlist/PlaylistView.tsx @@ -262,8 +262,8 @@ const PlaylistView = ({ ...rest }) => { if (isFailedResponse(res)) { notifyToast('error', errorMessages(res)[0]); } else { - queryClient.refetchQueries(['playlist'], { - active: true, + queryClient.setQueryData(['playlist', playlistId], (oldData: any) => { + return { ...oldData, name: editName, comment: editDescription, public: editPublic }; }); }