How to set redirect after login for Google Auth
I'm using Google Auth as authProvider
I followed the docs and added
return Promise.resolve("/clients"); in my authProviderhttps://refine.dev/docs/api-reference/core/hooks/auth/useLogin/#redirection-after-login
But it does not work
- Wrong redirectMy first menu url is `{{url}}/projects`, after I logged in, it will redirect to `{{url}}/projects`, but it should be `{{url}}/clients`
- Wrong hostnameI've deploy my site to NetlifyAfter I logged in, it will return to `localhost:3000/projects` not the **Netlify app url.**

useLogin data hook from refine is a modified version of react-query's useMutation for authentication.

