update dependencies

This commit is contained in:
Amruth Pillai
2026-02-03 22:55:22 +01:00
parent 726968288c
commit 3151f6a9cc
5 changed files with 558 additions and 549 deletions
-1
View File
@@ -16,7 +16,6 @@ export function Header() {
const ticking = useRef(false);
const springY = useSpring(y, { stiffness: 300, damping: 40 });
// biome-ignore lint/correctness/useExhaustiveDependencies: not required to be exhaustive
useEffect(() => {
if (typeof window === "undefined") return;
-1
View File
@@ -57,7 +57,6 @@ function composeRefs<T>(...refs: PossibleRef<T>[]): React.RefCallback<T> {
* Accepts callback refs and RefObject(s)
*/
function useComposedRefs<T>(...refs: PossibleRef<T>[]): React.RefCallback<T> {
// biome-ignore lint/correctness/useExhaustiveDependencies: we want to memoize by all values
return useCallback(composeRefs(...refs), refs);
}