Skip to content

Commit 7f34087

Browse files
committed
wip
1 parent 4e0a088 commit 7f34087

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Resources/UserResource/Pages/ViewUser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ protected function getHeaderActions(): array
2222
return [
2323
Actions\ActionGroup::make([
2424
Actions\Action::make('send_verify_user_email')
25-
->visible(fn ($record) => $record->isVerified() === false)
25+
->visible(fn(User $record) => $record->hasVerifiedEmail() === false)
2626
->label(__('Send Verification Email'))
2727
->action(function ($record) {
2828
$notification = new VerifyEmail;

0 commit comments

Comments
 (0)