Merge pull request 'fix auth refresh url' (#19) from refactor into main

Reviewed-on: #19
This commit is contained in:
rov 2026-03-20 21:47:17 -03:00
commit f5345c84ee

View File

@ -86,7 +86,7 @@ Api.interceptors.response.use(
try {
const response =
await axios.post<DefaultResponseDTOAuthenticationResponseDTO>(
`${import.meta.env.VITE_API_BASE_URL}/auth/refresh`,
`${import.meta.env.VITE_API_BASE_URL}/authentication/refresh`,
{ refreshToken: userData.refreshToken },
);