diff --git a/api/registration/applications.py b/api/registration/applications.py index 13a0bd7f..3a56c06e 100644 --- a/api/registration/applications.py +++ b/api/registration/applications.py @@ -93,6 +93,7 @@ async def list_incomplete(db: AsyncSession = Depends(with_db)): select(Participant) .outerjoin(Application, full=True) .where(Application.participant_id == None) + .where(Participant.role == Role.Participant) ) result = await db.execute(statement)