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:
parent
234e4a35c4
commit
aaf4ee524d
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue