Skip to content

Commit 56fec3d

Browse files
committed
remove unused variable variable state setters
1 parent 7577637 commit 56fec3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/src/components/EnigmaticLoadingExperience.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ export default function EnigmaticLoadingExperience() {
1717
lastTimeRef.current = currentTime;
1818

1919
// Smooth sine wave for pulsating (no random perturbation)
20-
setScale(s => {
20+
setScale(() => {
2121
// Slower, smoother pulse with reduced amplitude
2222
const newScale = 1 + 0.15 * Math.sin(currentTime / 1500);
2323
return newScale;
2424
});
2525

2626
// Smooth opacity changes
27-
setOpacity(o => {
27+
setOpacity(() => {
2828
// Slower, gentler opacity shift
2929
const newOpacity = 0.7 + 0.2 * Math.sin(currentTime / 2000);
3030
return newOpacity;

0 commit comments

Comments
 (0)