feat(BOOK-735): Removed video block from start page and collection page

Approved-by: Bianca Widstam
This commit is contained in:
Erik Tiekstra
2026-01-13 07:22:53 +00:00
parent 8befbf405a
commit 632a84c042
9 changed files with 0 additions and 108 deletions

View File

@@ -6,7 +6,6 @@ import CardsGrid from "@/components/Blocks/CardsGrid"
import CarouselCards from "@/components/Blocks/CarouselCards"
import FullWidthCampaign from "@/components/Blocks/FullWidthCampaign"
import JoinScandicFriends from "@/components/Blocks/JoinScandicFriends"
import { VideoBlock } from "@/components/Blocks/Video"
import { VideoCardBlock } from "@/components/Blocks/VideoCard"
import styles from "./blocks.module.css"
@@ -67,12 +66,6 @@ export function Blocks({ blocks }: BlocksProps) {
/>
</div>
)
case BlocksEnums.block.Video:
return (
<div key={`${block.typename}-${idx}`} className={styles.block}>
<VideoBlock key={`${block.typename}-${idx}`} video={block.video} />
</div>
)
default:
return null
}