Skip to content

Commit 1c30460

Browse files
code cleanup
1 parent fc0820e commit 1c30460

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.DS_Store

0 Bytes
Binary file not shown.

app/root.tsx

+2-3
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ export function HydrateFallback() {
7070
clearInterval(interval);
7171
return prev;
7272
}
73-
return prev + 1; // Increment speed; adjust as needed.
73+
return prev + 1;
7474
});
75-
}, 50); // Adjust the interval speed as needed.
75+
}, 50);
7676
return () => clearInterval(interval);
7777
}, []);
7878
return(
@@ -91,7 +91,6 @@ export function HydrateFallback() {
9191
style={{ width: `${progress}%` }}
9292
></div>
9393
</div>
94-
{/* <p className="text-white text-center mt-2">{progress}%</p> */}
9594
</div>
9695
</div>
9796

0 commit comments

Comments
 (0)