Skip to content

Commit

Permalink
Sort imports
Browse files Browse the repository at this point in the history
  • Loading branch information
TaiSakuma committed Aug 7, 2024
1 parent 953fc1f commit bd402db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/utils/config/__tests__/load-config.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { describe, it, expect, vi, afterEach } from "vitest";
import { afterEach, describe, expect, it, vi } from "vitest";
import { useLoadConfigT } from "../load-config";

globalThis.fetch = vi.fn();
Expand Down
2 changes: 1 addition & 1 deletion src/utils/config/load-config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ref, computed } from "vue";
import { useFetch } from "@vueuse/core";
import * as path from "path";
import { computed, ref } from "vue";

export async function useLoadConfigT<T extends object>(
defaultConfig: Partial<T> = {},
Expand Down

0 comments on commit bd402db

Please sign in to comment.