Run npm run lint

This commit is contained in:
Eric Liu 2025-03-23 11:26:25 -07:00
commit 2031cb7585
480 changed files with 8985 additions and 9048 deletions

View file

@ -1,13 +1,13 @@
<script lang="ts">
import { Breadcrumb, BreadcrumbItem } from "carbon-components-svelte";
import { Breadcrumb, BreadcrumbItem } from "carbon-components-svelte";
type BreadcrumbItemType = { href?: string; text: string };
type BreadcrumbItemType = { href?: string; text: string };
export let items: BreadcrumbItemType[] = [
{ href: "/", text: "Dashboard" },
{ href: "/reports", text: "Annual reports" },
{ href: "/reports/2019", text: "2019" },
];
export let items: BreadcrumbItemType[] = [
{ href: "/", text: "Dashboard" },
{ href: "/reports", text: "Annual reports" },
{ href: "/reports/2019", text: "2019" },
];
</script>
<Breadcrumb>