Skip to content

Commit 0b408dd

Browse files
authored
chore: fix for linter update (#1814)
Signed-off-by: Simon Rey <[email protected]>
1 parent 161cd40 commit 0b408dd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/frontend/src/lib/examples/Examples.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { onMount } from 'svelte';
44
import { NavPage } from '@podman-desktop/ui-svelte';
55
import { bootcClient } from '/@/api/client';
66
import ExamplesCard from './ExamplesCard.svelte';
7+
import { SvelteMap } from 'svelte/reactivity';
78
89
let groups: Map<Category, Example[]> = new Map();
910
@@ -18,7 +19,7 @@ onMount(async () => {
1819
1920
const categoryDict = Object.fromEntries(examples.categories.map((category: Category) => [category.id, category]));
2021
21-
const output: Map<Category, Example[]> = new Map();
22+
const output: SvelteMap<Category, Example[]> = new SvelteMap();
2223
2324
for (const example of examples.examples) {
2425
if (example.categories.length === 0) {

0 commit comments

Comments
 (0)