Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
eyeseast committed Oct 4, 2024
1 parent 27a7acd commit 270acb3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
10 changes: 6 additions & 4 deletions src/lib/components/navigation/HelpMenu.svelte
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<script lang="ts">
import { _ } from "svelte-i18n";
import Dropdown, { closeDropdown } from "@/common/Dropdown2.svelte";
import Menu from "@/common/Menu.svelte";
import { page } from "$app/stores";
import { _ } from "svelte-i18n";
import {
ChevronDown12,
ChevronUp12,
Expand All @@ -15,10 +14,13 @@
Question24,
Search16,
} from "svelte-octicons";
import Dropdown, { closeDropdown } from "@/common/Dropdown2.svelte";
import Menu from "@/common/Menu.svelte";
import SidebarItem from "../sidebar/SidebarItem.svelte";
import Premium from "@/common/icons/Premium.svelte";
import { startTour, isTourAvailable } from "../onboarding/GuidedTour.svelte";
import { page } from "$app/stores";
export let position = "bottom right";
Expand Down
10 changes: 7 additions & 3 deletions src/lib/components/onboarding/GuidedTour.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@
and if the user hasn't already taken it, we'll prompt them to take the guided tour.
-->
<script lang="ts" context="module">
import { get } from "svelte/store";
import type { Maybe } from "$lib/api/types";
import "driver.js/dist/driver.css";
import { page } from "$app/stores";
import { driver, type Driver, type DriveStep, type Config } from "driver.js";
import "driver.js/dist/driver.css";
import { get } from "svelte/store";
import { StorageManager } from "$lib/utils/storage";
import type { Maybe } from "$lib/api/types";
import { scripts } from "./scripts";
const storage = new StorageManager("guided-tour");
Expand Down

0 comments on commit 270acb3

Please sign in to comment.