Skip to content

Commit

Permalink
fix(backend): fix missing agent object requirement (#9380)
Browse files Browse the repository at this point in the history
  • Loading branch information
ntindle authored Feb 3, 2025
1 parent f1bc9d1 commit 53aea89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autogpt_platform/backend/backend/server/v2/store/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ async def get_agent(
try:
store_listing_version = (
await prisma.models.StoreListingVersion.prisma().find_unique(
where={"id": store_listing_version_id}
where={"id": store_listing_version_id}, include={"Agent": True}
)
)

Expand Down

0 comments on commit 53aea89

Please sign in to comment.