Before 8 месяцев назад
Родитель
Сommit
860029751f
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/components/Card/Card.tsx

+ 1 - 1
src/components/Card/Card.tsx

@@ -12,7 +12,7 @@ import styles from "./style.module.scss";
 export interface CardProps {
     item?: GameListRep;
     render?: (value: GameListRep) => ReactNode;
-    groupType?: Category["bet_type"];
+    groupType: Category["bet_type"];
 }
 const Card: FC<PropsWithChildren<CardProps>> = (props) => {
     const { render, item, groupType } = props;