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