fix(store): Youtube link not showing video on agent page (#9068)

Fixes #9054 

## Changes

- add the video link to the start of the images array
This commit is contained in:
Swifty 2024-12-19 11:19:37 +01:00 committed by GitHub
parent 234e4a35c4
commit aaf4ee524d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ export default async function Page({
storeListingVersionId={agent.store_listing_version_id} storeListingVersionId={agent.store_listing_version_id}
/> />
</div> </div>
<AgentImages images={agent.agent_image} /> <AgentImages images={[agent.agent_video, ...agent.agent_image]} />
</div> </div>
<Separator className="my-6" /> <Separator className="my-6" />
<AgentsSection <AgentsSection