diff options
Diffstat (limited to 'src/components/ui/background-ripple-effect.tsx')
-rw-r--r-- | src/components/ui/background-ripple-effect.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ui/background-ripple-effect.tsx b/src/components/ui/background-ripple-effect.tsx index d9d265b..7f084cd 100644 --- a/src/components/ui/background-ripple-effect.tsx +++ b/src/components/ui/background-ripple-effect.tsx @@ -16,7 +16,7 @@ export const BackgroundRippleEffect = ({ col: number; } | null>(null); const [rippleKey, setRippleKey] = useState(0); - const ref = useRef<any>(null); + const ref = useRef<HTMLDivElement>(null); return ( <div |