Skip to content

Commit

Permalink
Merge pull request #218 from Arquisoft/fix/webapp/api-link-typo
Browse files Browse the repository at this point in the history
Solved the link of the API docu in the lateral menu
  • Loading branch information
sergiorodriguezgarcia authored Apr 10, 2024
2 parents 37d62e3 + 988347e commit ee86425
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/components/LateralMenu.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const LateralMenu = ({ isOpen, onClose, changeLanguage, isDashboard }) => {
};

const handleApiClick = () => {
window.open(`http://${process.env.REACT_APP_API_ENDPOINT}/swagger/swagger-ui/index.html#/auth-controller/registerUser`, "_blank", "noopener");
window.open(`${process.env.REACT_APP_API_ENDPOINT}/swagger/swagger-ui/index.html#/auth-controller/registerUser`, "_blank", "noopener");
};

const handleLogout = async () => {
Expand Down

0 comments on commit ee86425

Please sign in to comment.