Kaynağa Gözat

fix: 修改ts类型错误

Before 8 ay önce
ebeveyn
işleme
860029751f
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  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;