@@ -12,7 +12,9 @@ const Loader = () => {
useEffect(() => {
if (products.length > 0) {
- setDisplay(false)
+ setTimeout(() => {
+ setDisplay(false)
+ }, 1000);
}
}, [products])