feat: implement target audience visibility and registration restrictions

This commit is contained in:
2026-06-25 05:12:02 +05:30
parent 0b1053a4e8
commit 025ea01afe
6 changed files with 111 additions and 8 deletions

View File

@@ -60,7 +60,8 @@ const AppContent: React.FC = () => {
socialProfile: event.guestSocialProfile,
maxParticipants: event["total capacity"] || (event.maxParticipants ?? ''),
sponsors: event.sponsors ?? [],
isEditMode: true
isEditMode: true,
openToAll: !!event.openToAll
});
setActiveItem('propose');
};