Update eslint dependencies and fix eslint errors

This commit is contained in:
prototypa
2024-08-26 01:03:42 -04:00
parent a268583964
commit 0202552ab1
11 changed files with 516 additions and 1798 deletions

View File

@@ -16,8 +16,6 @@ interface Link {
icon?: string;
}
interface ActionLink extends CallToAction {}
interface MenuLink extends Link {
links?: Array<MenuLink>;
}
@@ -25,7 +23,7 @@ interface MenuLink extends Link {
export interface Props {
id?: string;
links?: Array<MenuLink>;
actions?: Array<ActionLink>;
actions?: Array<CallToAction>;
isSticky?: boolean;
isDark?: boolean;
isFullWidth?: boolean;

View File

@@ -1,7 +1,6 @@
---
import Image from '~/components/common/Image.astro';
import Button from '~/components/ui/Button.astro';
import Background from '~/components/ui/Background.astro';
import type { Hero as Props } from '~/types';

View File

@@ -1,7 +1,6 @@
---
import Image from '~/components/common/Image.astro';
import Button from '~/components/ui/Button.astro';
import Background from '~/components/ui/Background.astro';
import type { Hero as Props } from '~/types';