Skip to content

Commit

Permalink
fix: lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
imkarimkarim committed Jan 8, 2025
1 parent 24f777f commit f19f71d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/ui/animated-grid-pattern.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ interface AnimatedGridPatternProps {
height?: number;
x?: number;
y?: number;
strokeDasharray?: any;
strokeDasharray?: string | number | undefined;
numSquares?: number;
className?: string;
maxOpacity?: number;
Expand All @@ -28,6 +28,7 @@ export default function AnimatedGridPattern({
className,
maxOpacity = 0.5,
duration = 4,
// eslint-disable-next-line @typescript-eslint/no-unused-vars
repeatDelay = 0.5,
...props
}: AnimatedGridPatternProps) {
Expand Down

0 comments on commit f19f71d

Please sign in to comment.