Skip to content

Commit 8813241

Browse files
authored
Fix type error: convert Stringable to string for email property (#100)
1 parent 001510b commit 8813241

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Livewire/Auth/ResetPassword.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function mount(string $token): void
3131
{
3232
$this->token = $token;
3333

34-
$this->email = request()->string('email');
34+
$this->email = request()->string('email')->value();
3535
}
3636

3737
/**

0 commit comments

Comments
 (0)