feat(useAuthenticateApp): centralize invalidating queries

This commit is contained in:
Ali BARIN
2024-09-24 12:11:02 +00:00
parent 4d5fc50f1a
commit 244eeeb816
3 changed files with 23 additions and 24 deletions

View File

@@ -1,9 +1,7 @@
import { useMutation, useQueryClient } from '@tanstack/react-query';
import { useMutation } from '@tanstack/react-query';
import api from 'helpers/api';
export default function useVerifyConnection() {
const queryClient = useQueryClient();
const query = useMutation({
mutationFn: async (connectionId) => {
try {
@@ -16,12 +14,6 @@ export default function useVerifyConnection() {
throw new Error('Failed while verifying connection!');
}
},
onSuccess: (data) => {
const appKey = data?.data.key;
queryClient.invalidateQueries({
queryKey: ['apps', appKey, 'connections'],
});
},
});
return query;