Skip to content

Commit

Permalink
fix(apps): elab - initiative index key fix on intro video.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnycrich committed May 28, 2024
1 parent 9e45a80 commit b6a7816
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions apps/elab/pages/initiatives/[initiative]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ type Initiative = {
publicId: string;
};
}[];
vimeoFile: string;
};

export default function InitIndex({
Expand Down Expand Up @@ -238,7 +237,7 @@ export default function InitIndex({
<div id="video" className="min-h-[inherit] left">
{page.introVideo ? (
<VideoV2
key={`video-player-${page.vimeoFile}`}
key={`video-player-${page.introVideo.file}`}
isSlide={true}
videoLabel={`${
InitiativeFilterGroups.find(
Expand Down

0 comments on commit b6a7816

Please sign in to comment.