```ts const { data: getPricingData, isPending, mutate, } = useMutation({ mutationKey: ['get-pricing'], mutationFn: () => fetchPricing(), onError: (error) => { console.log(error); }, }); ``` I want to access the error status code.