Merge version_1_1780754009380 into main #3

Merged
bender merged 2 commits from version_1_1780754009380 into main 2026-06-06 13:57:19 +00:00
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ const HeroVideoExpand: React.FC<HeroVideoExpandProps> = ({ videoSrc, onComplete
videoElement.removeEventListener('ended', handleEnded);
};
}
}, [onComplete]); // Line 59, column 6 - Added 'onComplete' to dependency array
}, [onComplete]);
return (
<div className="relative w-full h-full overflow-hidden">

View File

@@ -1,6 +1,6 @@
import { LucideIcon, icons } from 'lucide-react';
export function resolveIcon(iconName: string): LucideIcon | null { // Line 20, column 10 - Changed to named export
export default function resolveIcon(iconName: string): LucideIcon | null {
const IconComponent = icons[iconName as keyof typeof icons];
if (IconComponent) {
return IconComponent as LucideIcon;