Add guard around location redirect.

This commit is contained in:
Mike Cao 2022-10-24 15:25:07 -07:00
parent 4bad94f436
commit 99c8752aa5
2 changed files with 5 additions and 2 deletions

View file

@ -143,7 +143,10 @@
) {
e.preventDefault();
trackEvent(name).then(() => {
location.href = get('href');
const href = get('href');
if (href) {
location.href = href;
}
});
} else {
trackEvent(name);