Fix: Improve email validation and copy (#3743)
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user