- {#each helpSections as section, i}
+ {#each helpSections as item, i}
-
+
{/each}
diff --git a/ts/deck-options/HelpSection.svelte b/ts/components/HelpSection.svelte
similarity index 64%
rename from ts/deck-options/HelpSection.svelte
rename to ts/components/HelpSection.svelte
index d5768a969..02d3578e3 100644
--- a/ts/deck-options/HelpSection.svelte
+++ b/ts/components/HelpSection.svelte
@@ -6,22 +6,22 @@
import * as tr from "@tslib/ftl";
import { renderMarkdown } from "@tslib/helpers";
- import Row from "../components/Row.svelte";
- import type { DeckOption } from "./types";
+ import Row from "./Row.svelte";
+ import type { HelpItem } from "./types";
- export let section: DeckOption;
+ export let item: HelpItem;