Warning if similar event exists

This commit is contained in:
Sylvain Duchesne
2026-01-26 18:12:34 +01:00
parent 2415409374
commit b7f86b139f
9 changed files with 765 additions and 627 deletions
+2
View File
@@ -13,6 +13,7 @@ import { ParticipantsListScreen } from './ParticipantsListScreen';
import { MeetingPointsScreen } from './MeetingPointsScreen';
import { FriendsListScreen } from './FriendsListScreen';
import { ShareProfileScreen } from './ShareProfileScreen';
import { UpdateProfileScreen } from './UpdateProfileScreen';
import { WelcomeScreen } from './WelcomeScreen';
export interface Screen {
@@ -58,6 +59,7 @@ export const screenGroups: ScreenGroup[] = [
name: 'Utilisateur',
screens: [
{ id: 'profile', name: 'Mon profil', component: ProfileScreen },
{ id: 'update-profile', name: 'Modifier mon profil', component: UpdateProfileScreen },
{ id: 'user-profile', name: 'Profil d\'un utilisateur', component: UserProfileScreen },
{ id: 'friends-list', name: 'Mon réseau', component: FriendsListScreen },
{ id: 'share-profile', name: 'Partager mon profil', component: ShareProfileScreen },