Remove unused cardControls prop

This commit is contained in:
jeffvli
2022-12-13 15:05:11 -08:00
parent 5ed4c77e4d
commit 3b012b7d36
2 changed files with 0 additions and 3 deletions
@@ -113,7 +113,6 @@ const Row = styled.div<{ $secondary?: boolean }>`
interface BaseGridCardProps { interface BaseGridCardProps {
columnIndex: number; columnIndex: number;
controls: { controls: {
cardControls: any[];
cardRows: CardRow[]; cardRows: CardRow[];
itemType: LibraryItem; itemType: LibraryItem;
playButtonBehavior: Play; playButtonBehavior: Play;
@@ -13,7 +13,6 @@ export const GridCard = memo(({ data, index, style }: ListChildComponentProps) =
columnCount, columnCount,
itemGap, itemGap,
itemCount, itemCount,
cardControls,
cardRows, cardRows,
itemData, itemData,
itemType, itemType,
@@ -33,7 +32,6 @@ export const GridCard = memo(({ data, index, style }: ListChildComponentProps) =
key={`card-${i}-${index}`} key={`card-${i}-${index}`}
columnIndex={i} columnIndex={i}
controls={{ controls={{
cardControls,
cardRows, cardRows,
itemType, itemType,
playButtonBehavior, playButtonBehavior,