Skip to content

Commit 31fc87b

Browse files
Added: ! for conditional check to match the status
1 parent d22b714 commit 31fc87b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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
@@ -46,7 +46,7 @@
4646
await invalidate(Dependencies.USER);
4747
addNotification({
4848
message: `${$user.name || $user.email || $user.phone || 'The account'} has been ${
49-
$user.phoneVerification ? 'unverified' : 'verified'
49+
!$user.phoneVerification ? 'unverified' : 'verified'
5050
}`,
5151
type: 'success'
5252
});

0 commit comments

Comments
 (0)