fix: now using the correct method to instantiate motion since its constructor is deprecated in favor of the create method

This commit is contained in:
Christian Andolf
2025-04-16 14:11:24 +02:00
parent 009d46ebac
commit 8a9107cdf2
4 changed files with 7 additions and 7 deletions

View File

@@ -30,7 +30,7 @@ import styles from "./surprises.module.css"
import type { SurprisesProps } from "@/types/components/blocks/surprises"
import type { Surprise } from "@/types/components/myPages/rewards"
const MotionModal = motion(Modal)
const MotionModal = motion.create(Modal)
export default function SurprisesNotification({
surprises: initialData,