diff options
| author | bobzel <zzzman@gmail.com> | 2024-08-15 11:14:04 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-08-15 11:14:04 -0400 |
| commit | 25ea424ab2e6c32272e828b98822eb32f1fe2cab (patch) | |
| tree | 8e6790ab50664401f9c4cb9172bbec0c2e88de99 /src/client/views/nodes/trails/SlideEffect.tsx | |
| parent | 5960fa9635c28c2b609826005cb7595ec6b9fb75 (diff) | |
cleaned up server list add/rem.
Diffstat (limited to 'src/client/views/nodes/trails/SlideEffect.tsx')
| -rw-r--r-- | src/client/views/nodes/trails/SlideEffect.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/trails/SlideEffect.tsx b/src/client/views/nodes/trails/SlideEffect.tsx index 00039e3cb..a114c231f 100644 --- a/src/client/views/nodes/trails/SlideEffect.tsx +++ b/src/client/views/nodes/trails/SlideEffect.tsx @@ -103,7 +103,7 @@ export default function SpringAnimation({ doc, dir, springSettings, presEffect, api.start({ loop: infinite, delay: infinite ? 500 : 0 }); } }, [inView]); - const animatedDiv = (style: any) => ( + const animatedDiv = (style: object) => ( <animated.div ref={ref} style={{ ...style, opacity: to(springs.opacity, val => `${val}`) }}> {children} </animated.div> |
