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