feat: add party user gender field to schema and implement event joining functionality with gender tracking
This commit is contained in:
@@ -73,7 +73,7 @@ interface StateProps {}
|
||||
|
||||
interface DispatchProps {}
|
||||
|
||||
interface EventDetailProps extends OwnProps, StateProps, DispatchProps {}
|
||||
interface PageProps extends OwnProps, StateProps, DispatchProps {}
|
||||
|
||||
const showJoinedMembers = (joinMembers: Record<string, any>[]) => {
|
||||
const avatars = joinMembers.map((jm) => jm.avatar);
|
||||
@@ -90,7 +90,7 @@ const showJoinedMembers = (joinMembers: Record<string, any>[]) => {
|
||||
);
|
||||
};
|
||||
|
||||
const EventDetail: React.FC<EventDetailProps> = ({ event_detail }) => {
|
||||
const EventDetail: React.FC<PageProps> = ({ event_detail }) => {
|
||||
const router = useIonRouter();
|
||||
|
||||
const [showPopover, setShowPopover] = useState(false);
|
||||
|
Reference in New Issue
Block a user