isLoading is indeed returning undefined everytime. To address this, you can use isPending
const { isPending: isUpdating, mutate: updateSettings } = useMutation({})
So react query team has introduced isPending which works exactly the same as isLoading.