We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c68e6a0 commit b188180Copy full SHA for b188180
sync/api/projects.py
@@ -426,8 +426,8 @@ def get_submissions(project_id: str) -> Response[dict]:
426
:rtype: dict
427
"""
428
recent_submissions = get_default_client().get_project_submissions(project_id)
429
- if recent_submissions.get("result") and len(recent_submissions["result"]) > 0:
430
- return Response(result=recent_submissions["result"])
+ if recent_submissions.get("items") and len(recent_submissions["items"]) > 0:
+ return Response(result=recent_submissions["items"])
431
432
433
def get_latest_project_config_recommendation(
0 commit comments