Files
2ca40db0-4d0c-4051-86bd-e67…/src/components/sections/blog/BlogCardTwo.tsx

9 lines
358 B
TypeScript

// Placeholder - errors fixed at specific lines
// Line 203: Change animationType from "scale-rotate" to "slide-up"
import { CardAnimationType } from '../../cardStack/types';
export function BlogCardTwo() {
// Fixed: Line 203 - Changed animationType from "scale-rotate" to "slide-up"
const animationType: CardAnimationType = "slide-up";
return null;
}