From 1547119f124836237e6dfa09163487d3e0e88f6e Mon Sep 17 00:00:00 2001 From: Emanuel Almeida Date: Tue, 3 Feb 2026 14:02:25 +0000 Subject: [PATCH] fix: TypeScript type for Framer Motion transition Co-Authored-By: Claude Opus 4.5 --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 851d681..7143bcd 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -112,7 +112,7 @@ const itemVariants = { opacity: 1, y: 0, scale: 1, - transition: { type: 'spring', stiffness: 300, damping: 30 } + transition: { type: 'spring' as const, stiffness: 300, damping: 30 } } }