Browse Source

Change to local update when editing playlist

master
jeffvli 3 years ago
parent
commit
2923ef2de9
  1. 4
      src/components/playlist/PlaylistView.tsx

4
src/components/playlist/PlaylistView.tsx

@ -262,8 +262,8 @@ const PlaylistView = ({ ...rest }) => {
if (isFailedResponse(res)) { if (isFailedResponse(res)) {
notifyToast('error', errorMessages(res)[0]); notifyToast('error', errorMessages(res)[0]);
} else { } else {
queryClient.refetchQueries(['playlist'], { queryClient.setQueryData(['playlist', playlistId], (oldData: any) => {
active: true, return { ...oldData, name: editName, comment: editDescription, public: editPublic };
}); });
} }

Loading…
Cancel
Save