Merge branch 'features/pendingMembers' into dev

This commit is contained in:
p2405951
2026-01-14 22:39:45 +01:00
2 changed files with 7 additions and 1 deletions
+2
View File
@@ -33,8 +33,10 @@ function ProfilePage() {
<p><strong>Mail :</strong> {user?.email} </p>
<p><strong>Téléphone :</strong> {user?.phone === null ? "Pas de numéro enregistré" : user?.phone}</p>
</div>
<div className={styles.settingImage}>
<SettingsModal />
</div>
</div>
<h2>Tâches :</h2>
{user && user.tasks.length > 0 ? (
+5 -1
View File
@@ -9,7 +9,11 @@
border-radius: 20px;
box-sizing: border-box;
}
.settingImage{
width:100%;
display: flex;
justify-content: center;
}
.contentWrapper {
display: flex;
flex-direction: column;