diff options
Diffstat (limited to 'src/lib/CommandPalette/CommandPalette.svelte')
| -rw-r--r-- | src/lib/CommandPalette/CommandPalette.svelte | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/CommandPalette/CommandPalette.svelte b/src/lib/CommandPalette/CommandPalette.svelte index bf568200..81ce112c 100644 --- a/src/lib/CommandPalette/CommandPalette.svelte +++ b/src/lib/CommandPalette/CommandPalette.svelte @@ -1,10 +1,10 @@ <script lang="ts"> import { onMount } from "svelte"; -import { fly, fade } from "svelte/transition"; import { flip } from "svelte/animate"; -import type { CommandPaletteAction } from "./actions"; -import locale from "$stores/locale"; +import { fade, fly } from "svelte/transition"; import { track } from "$lib/analytics"; +import locale from "$stores/locale"; +import type { CommandPaletteAction } from "./actions"; export let items: CommandPaletteAction[] = []; export let open = false; |