Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
b58f33c
fix(asciify): include sync store dependencies
phh235 Aug 14, 2026
c793fc3
fix(bend): include sync store dependencies
phh235 Aug 14, 2026
9c3140c
fix(blaze): include sync store dependencies
phh235 Aug 14, 2026
723223d
fix(bubble): include sync store dependencies
phh235 Aug 14, 2026
32ab2fe
fix(canvas): include sync store dependencies
phh235 Aug 14, 2026
9d7f4d9
fix(cloth): include sync store dependencies
phh235 Aug 14, 2026
1be840e
fix(clouds): include sync store dependencies
phh235 Aug 14, 2026
bb74143
fix(decryptreveal): include sync store dependencies
phh235 Aug 14, 2026
bcbe260
fix(displacement): include sync store dependencies
phh235 Aug 14, 2026
1f127c3
fix(droplets): include sync store dependencies
phh235 Aug 14, 2026
5b3d305
fix(flamewrap): include sync store dependencies
phh235 Aug 14, 2026
e3192ea
fix(forcefield): include sync store dependencies
phh235 Aug 14, 2026
e9b8ba1
fix(frost): include sync store dependencies
phh235 Aug 14, 2026
512552d
fix(glass): include sync store dependencies
phh235 Aug 14, 2026
62e45af
fix(glitch): include sync store dependencies
phh235 Aug 14, 2026
a95be04
fix(glyphrain): include sync store dependencies
phh235 Aug 14, 2026
00fd466
fix(grid): include sync store dependencies
phh235 Aug 14, 2026
96f5acb
fix(hexfloat): include sync store dependencies
phh235 Aug 14, 2026
bc4a305
fix(laser): include sync store dependencies
phh235 Aug 14, 2026
c57e690
fix(liquid): include sync store dependencies
phh235 Aug 14, 2026
bb07bae
fix(magnify): include sync store dependencies
phh235 Aug 14, 2026
5304290
fix(particlereveal): include sync store dependencies
phh235 Aug 14, 2026
37093fd
fix(particlescroll): include sync store dependencies
phh235 Aug 14, 2026
0cf09a7
fix(peel): include sync store dependencies
phh235 Aug 14, 2026
236be75
fix(retrodither): include sync store dependencies
phh235 Aug 14, 2026
f2ca7c2
fix(ripple): include sync store dependencies
phh235 Aug 14, 2026
27a35e0
fix(shatter): include sync store dependencies
phh235 Aug 14, 2026
0ced953
fix(vhs): include sync store dependencies
phh235 Aug 14, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lib/Asciify/Asciify.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/Bend/Bend.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/Blaze/Blaze.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/Bubble/Bubble.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/Canvas/Canvas.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/Cloth/Cloth.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/Clouds/Clouds.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/DecryptReveal/DecryptReveal.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/Displacement/Displacement.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/Droplets/Droplets.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/FlameWrap/FlameWrap.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/ForceField/ForceField.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/Frost/Frost.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/Glass/Glass.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/Glitch/Glitch.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/GlyphRain/GlyphRain.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/Grid/Grid.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/HexFloat/HexFloat.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/Laser/Laser.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/Liquid/Liquid.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/Magnify/Magnify.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/ParticleReveal/ParticleReveal.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/ParticleScroll/ParticleScroll.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/Peel/Peel.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/RetroDither/RetroDither.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/Ripple/Ripple.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/Shatter/Shatter.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
2 changes: 1 addition & 1 deletion src/lib/VHS/VHS.preact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function useSyncExternalStore<T>(
useEffect(() => {
const unsubscribe = subscribe(() => setValue(getSnapshot()));
return unsubscribe;
}, []);
}, [subscribe, getSnapshot]);
return value;
}

Expand Down
Loading