diff --git a/src/components/CotatoDropBox.tsx b/src/components/CotatoDropBox.tsx index 75d6b097..5094a40f 100644 --- a/src/components/CotatoDropBox.tsx +++ b/src/components/CotatoDropBox.tsx @@ -63,7 +63,7 @@ const CotatoDropBox = ({ const dropBoxRef = useRef(null); - const isInProduction = process.env.NODE_ENV === 'production'; + // const isInProduction = process.env.NODE_ENV === 'production'; /** * @@ -190,11 +190,11 @@ const CotatoDropBox = ({ */ useEffect(() => { let newList = [...list]; - if (isInProduction && isTypeGeneration(list[0])) { - newList = newList.filter( - (generation: CotatoGenerationInfoResponse) => generation.generationNumber! >= 8, - ); - } + // if (isInProduction && isTypeGeneration(list[0])) { + // newList = newList.filter( + // (generation: CotatoGenerationInfoResponse) => generation.generationNumber! >= 8, + // ); + // } if (reversed) { newList = [...newList].reverse();