diff --git a/src/Components/PlaygroundUpdated.jsx b/src/Components/PlaygroundUpdated.jsx index 228f976..f1ae111 100644 --- a/src/Components/PlaygroundUpdated.jsx +++ b/src/Components/PlaygroundUpdated.jsx @@ -270,11 +270,12 @@ const PlayGroundUpdated = () => { console.log("current card index use effect ... ", currentCardIndex); if (totalData) { if (totalData.length > 0 && currentCardIndex < totalData.length) { - setIsLoading(true); - setTimeout(() => { - setCardData(totalData[currentCardIndex]); - setIsLoading(false); - }, 1000); + setCardData(totalData[currentCardIndex]); + // setIsLoading(true); + // setTimeout(() => { + // setCardData(totalData[currentCardIndex]); + // setIsLoading(false); + // }, 1000); } } }, [currentCardIndex]);