Fix: Improve email validation and copy (#3743)

This commit is contained in:
Mike
2024-12-23 14:40:25 +01:00
committed by GitHub
parent baea53e5ab
commit 71e92ead27
2 changed files with 2 additions and 2 deletions
@@ -41,7 +41,7 @@
Changing a user's role may add a seat to your current billing cycle.
</p>
<p>
Released seats will be adjusted at the start of your next billing cycle:
Unused seats will be adjusted at the start of your next billing cycle:
<br />
{{ nextBillingCycleEnd }}
</p>
@@ -3,7 +3,7 @@ import type { GenericValidateFunction } from 'vee-validate'
import { isNullOrUndefined } from '@speckle/shared'
export const VALID_HTTP_URL = /^https?:\/\//
export const VALID_EMAIL = /^[\w-_.+]+@[\w-_.+]+$/
export const VALID_EMAIL = /^[^\s@]+@[^\s@]+\.[^\s@]+$/
/**
* Note about new validators: