diff --git a/apps/elab/pages/initiatives/[initiative]/index.tsx b/apps/elab/pages/initiatives/[initiative]/index.tsx index 070b9fff..e41965c5 100644 --- a/apps/elab/pages/initiatives/[initiative]/index.tsx +++ b/apps/elab/pages/initiatives/[initiative]/index.tsx @@ -78,7 +78,8 @@ export default function InitIndex({ const subHeadClass = `${Theming[initiative].heading} text-3xl my-7 font-extrabold uppercase`; const videoColor = { stroke: Theming[initiative].arrow, - fill: Theming[initiative].fillRgb, + fill: Theming[initiative].fill, + fillRgb: Theming[initiative].fillRgb, bg: Theming[initiative].videoBg || Theming[initiative].secondaryBg, seekbar: Theming[initiative].fillVideo || Theming[initiative].arrowHex, buttons: '#fff', diff --git a/apps/elab/pages/studios/projects/[key].tsx b/apps/elab/pages/studios/projects/[key].tsx index 672cea2f..b106774f 100644 --- a/apps/elab/pages/studios/projects/[key].tsx +++ b/apps/elab/pages/studios/projects/[key].tsx @@ -91,7 +91,8 @@ export default function Project({ Theming[item.initiative === 'gunviolence' ? 'tngv' : 'tnej']; const videoColor = { stroke: theming.arrow, - fill: theming.fillRgb, + fill: theming.fill, + fillRgb: theming.fillRgb, bg: theming.videoBg || theming.secondaryBg, seekbar: theming.fillVideo || theming.arrowHex, buttons: '#fff', @@ -149,84 +150,34 @@ export default function Project({ }; const Media = () => { - if (item.video) { - let videoFile = item.video.file; - if (item.trailerVideo && !videoOpen) videoFile = item.trailerVideo.file; - console.log('fiLe', videoFile); + if (item.video) return (