Skip to content

Commit

Permalink
fix(store): Youtube link not showing video on agent page (#9068)
Browse files Browse the repository at this point in the history
Fixes #9054 

## Changes

- add the video link to the start of the images array
  • Loading branch information
Swiftyos authored Dec 19, 2024
1 parent 234e4a3 commit aaf4ee5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default async function Page({
storeListingVersionId={agent.store_listing_version_id}
/>
</div>
<AgentImages images={agent.agent_image} />
<AgentImages images={[agent.agent_video, ...agent.agent_image]} />
</div>
<Separator className="my-6" />
<AgentsSection
Expand Down

0 comments on commit aaf4ee5

Please sign in to comment.