fix(backend): fix missing agent object requirement (#9380)

This commit is contained in:
Nicholas Tindle
2025-02-03 07:42:54 -06:00
committed by GitHub
parent f1bc9d1581
commit 53aea8908a

View File

@@ -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}
)
)