From 6eff24369be2307fc9ecbfc842bd3f7a000c6e30 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 15 Aug 2023 16:09:40 +0200 Subject: [PATCH] fix --- app/Http/Livewire/Waitlist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Livewire/Waitlist.php b/app/Http/Livewire/Waitlist.php index a0d4284b6..29a29f7f2 100644 --- a/app/Http/Livewire/Waitlist.php +++ b/app/Http/Livewire/Waitlist.php @@ -44,7 +44,7 @@ public function submit() 'type' => 'registration', ]); - $this->emit('success', 'You have been added to the waitlist.'); + $this->emit('success', 'Check your email to verify your email address.'); dispatch(new SendConfirmationForWaitlistJob($this->email, $waitlist->uuid)); } catch (\Exception $e) { return general_error_handler(err: $e, that: $this);