Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

Commit

Permalink
fix: missing type
Browse files Browse the repository at this point in the history
  • Loading branch information
eddybrando committed Jan 16, 2024
1 parent 2f50a1a commit aac4a00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/Layout/Footer/LayoutFooterLinksGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
</template>

<script setup lang="ts">
import { type IconLink } from "~/types/links";
import type { IconLink, TextLink } from "~/types/links";

Check failure on line 30 in components/Layout/Footer/LayoutFooterLinksGroup.vue

View workflow job for this annotation

GitHub Actions / Lint

Delete `·`
interface Props {
title: string;
elements: IconLink[];
elements: IconLink[] | TextLink[];
iconsOnly?: boolean;
theme?: "light" | "dark";
}
Expand Down

0 comments on commit aac4a00

Please sign in to comment.