Revert ""Speed up" loading"

This reverts commit 913dbf98c21ae631e43da0e13a070d0bd375d4a6.
This commit is contained in:
Pas 2025-01-06 14:15:17 -07:00
parent fea00bf37e
commit ca7b376326

View file

@ -19,8 +19,8 @@ export function Discover() {
const simulateLoading = async () => {
// Simulate a loading time with setTimeout or fetch data here
await new Promise((resolve) => {
setTimeout(resolve, 1000);
}); // Simulate 1s loading time
setTimeout(resolve, 2000);
}); // Simulate 2s loading time
setLoading(false); // After loading, set loading to false
};