From d9c74ddab92794b61cb23bc134f27454e3e3f7e6 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Thu, 16 Apr 2026 06:15:40 +0000 Subject: [PATCH] Bob AI: fix build errors (attempt 2) --- src/hooks/useParallax.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/useParallax.ts b/src/hooks/useParallax.ts index 59916ae..5b54605 100644 --- a/src/hooks/useParallax.ts +++ b/src/hooks/useParallax.ts @@ -1,6 +1,6 @@ import { useState, useEffect, type RefObject } from "react"; -export const useParallax = (ref: RefObject, options?: { maxRotate?: number }) => { +export const useParallax = (ref: RefObject, options?: { maxRotate?: number }) => { const [transform, setTransform] = useState("rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1)"); const maxRotate = options?.maxRotate || 5;