Skip to content

Commit

Permalink
fix(plausible): Make sure FastANI email is defined and has content.
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronmussig committed Apr 14, 2023
1 parent b8e4f4f commit f636283
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pages/tools/fastani.vue
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,8 @@ export default Vue.extend({
{
props: {
comparisons: resp.data.group_1.length * resp.data.group_2.length,
email: isDefined(payload.email)
// @ts-ignore
email: isDefined(payload.email) && payload.email.length > 3,
}
},
);
Expand Down

0 comments on commit f636283

Please sign in to comment.