We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc0820e commit 1c30460Copy full SHA for 1c30460
.DS_Store
0 Bytes
app/root.tsx
@@ -70,9 +70,9 @@ export function HydrateFallback() {
70
clearInterval(interval);
71
return prev;
72
}
73
- return prev + 1; // Increment speed; adjust as needed.
+ return prev + 1;
74
});
75
- }, 50); // Adjust the interval speed as needed.
+ }, 50);
76
return () => clearInterval(interval);
77
}, []);
78
return(
@@ -91,7 +91,6 @@ export function HydrateFallback() {
91
style={{ width: `${progress}%` }}
92
></div>
93
</div>
94
- {/* <p className="text-white text-center mt-2">{progress}%</p> */}
95
96
97
0 commit comments