Skip to content

Commit 54b9a98

Browse files
committed
update
1 parent b315ff9 commit 54b9a98

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/components/LearningPathCatalog.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
import { useEffect, useState, type ChangeEvent } from "react";
22
import Markdown from "react-markdown";
3-
import type { CollectionEntry } from "astro:content";
3+
import type { CollectionEntry, getEntries, reference } from "astro:content";
44
import type { IconifyIconBuildResult } from "@iconify/utils";
55
import { setSearchParams } from "~/util/url";
6+
import { z } from "astro:schema";
67

78
type LearningPaths = CollectionEntry<"learning-paths">["data"][];
89
type Icons = Record<string, IconifyIconBuildResult>;
910

1011
type Filters = {
11-
products: string[];
12+
products: string[],
1213
groups: string[];
1314
};
1415

0 commit comments

Comments
 (0)