Skip to content

Commit

Permalink
(fix) Bug Report: Inconsistency in User Verification Status between E…
Browse files Browse the repository at this point in the history
…mail and Phone Number appwrite#1392
  • Loading branch information
divijshrivastava committed Oct 24, 2024
1 parent 8b94623 commit d3d5408
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
await invalidate(Dependencies.USER);
addNotification({
message: `${$user.name || $user.email || $user.phone || 'The account'} has been ${
$user.phoneVerification ? 'unverified' : 'verified'
!$user.phoneVerification ? 'unverified' : 'verified'
}`,
type: 'success'
});
Expand Down

0 comments on commit d3d5408

Please sign in to comment.