Skip to content

Commit

Permalink
Fix verification email url on home page (#4647)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrieldutra authored Feb 24, 2020
1 parent f1a2f8c commit 209ee16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/app/pages/home/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function DeprecatedEmbedFeatureAlert() {

function EmailNotVerifiedAlert() {
const verifyEmail = () => {
axios.post("verification_email").then(data => {
axios.post("verification_email/").then(data => {
notification.success(data.message);
});
};
Expand Down

0 comments on commit 209ee16

Please sign in to comment.