diff --git a/src/app/(main)/(app)/create/page.tsx b/src/app/(main)/(app)/create/page.tsx index 888bf09..6d7af5f 100644 --- a/src/app/(main)/(app)/create/page.tsx +++ b/src/app/(main)/(app)/create/page.tsx @@ -94,6 +94,13 @@ export default function CreatePage() { } }, [contentType, frameOptions, frameType]); + // Force dynamic mode for COUPON and FEEDBACK types + useEffect(() => { + if (contentType === 'COUPON' || contentType === 'FEEDBACK') { + setIsDynamic(true); + } + }, [contentType]); + // Logo state const [logoUrl, setLogoUrl] = useState(''); const [logoSize, setLogoSize] = useState(24); @@ -712,14 +719,23 @@ export default function CreatePage() { Dynamic Recommended -