From d3caf36203a51b430e5b4b599fa75b50d19a0482 Mon Sep 17 00:00:00 2001 From: soufiane Date: Tue, 18 Nov 2025 01:05:57 +0100 Subject: [PATCH] fix: use correct User property isVerified instead of isEmailVerified MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change user.isEmailVerified to user.isVerified to match the User type definition. The User type has isVerified property, not isEmailVerified. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- app/profil/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/profil/page.tsx b/app/profil/page.tsx index 3a189e7..d5ce5db 100644 --- a/app/profil/page.tsx +++ b/app/profil/page.tsx @@ -208,7 +208,7 @@ export default function ProfilePage() { Email vérifié
- {user.isEmailVerified ? ( + {user.isVerified ? ( Vérifié ✓ ) : ( Non vérifié