Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces improved error handling for invalid JWT tokens in the backend, and enhances the frontend to better handle authentication errors by redirecting users to the login page when their token is invalid or expired. Additionally, it updates the frontend API base URL.
Backend: Improved Token Error Handling
InvalidTokenExceptionfor clearer handling of invalid or expired JWT tokens. (linktreeclone-backend/src/main/java/br/com/linktreeclone/exception/InvalidTokenException.java, linktreeclone-backend/src/main/java/br/com/linktreeclone/exception/InvalidTokenException.javaR1-R8)TokenServiceto throwInvalidTokenExceptioninstead of a genericRuntimeExceptionwhen token validation fails. (linktreeclone-backend/src/main/java/br/com/linktreeclone/security/TokenService.java, [1] [2]RestExceptionHandlerto handleInvalidTokenExceptionand return a 403 Forbidden response with a descriptive error. (linktreeclone-backend/src/main/java/br/com/linktreeclone/exception/RestExceptionHandler.java, linktreeclone-backend/src/main/java/br/com/linktreeclone/exception/RestExceptionHandler.javaR41-R52)Frontend: Authentication Error Handling and Configuration
linktreeclone-frontend/src/api/axiosConfig.js, linktreeclone-frontend/src/api/axiosConfig.jsL4-R4)linktreeclone-frontend/src/api/axiosConfig.js, linktreeclone-frontend/src/api/axiosConfig.jsR18-R31)