fix: test email should not be required
This commit is contained in:
parent
ec1312a3f8
commit
7f449c3b72
1 changed files with 2 additions and 2 deletions
|
|
@ -73,8 +73,8 @@ class Email extends Component
|
||||||
#[Validate(['nullable', 'string'])]
|
#[Validate(['nullable', 'string'])]
|
||||||
public ?string $resendApiKey = null;
|
public ?string $resendApiKey = null;
|
||||||
|
|
||||||
#[Validate(['required', 'email'])]
|
#[Validate(['nullable', 'email'])]
|
||||||
public string $testEmailAddress = '';
|
public ?string $testEmailAddress = null;
|
||||||
|
|
||||||
public function mount()
|
public function mount()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue