Skip to content

Commit e96cf47

Browse files
authored
Merge pull request #3164 from appwrite/fix/phone-verification-notification-message
fix: correct phone verification success notification
2 parents 55792bc + a5e15a0 commit e96cf47

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/routes/(console)/project-[region]-[project]/auth/user-[user]/updateStatus.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
await invalidate(Dependencies.USER);
5353
addNotification({
5454
message: `${$user.name || $user.email || $user.phone || 'The account'} has been ${
55-
$user.phoneVerification ? 'unverified' : 'verified'
55+
!$user.phoneVerification ? 'unverified' : 'verified'
5656
}`,
5757
type: 'success'
5858
});

0 commit comments

Comments
 (0)