Relocate misplaced frontend files

This commit is contained in:
2026-04-19 18:36:55 +02:00
parent d44a667592
commit e7582c4bae
23 changed files with 92 additions and 40 deletions

View File

@@ -1,10 +1,10 @@
import { beforeEach, describe, expect, it, vi } from "vitest";
import type { Mock } from "vitest";
import { ENDPOINTS } from "./endpoints";
import { fetchBansByCountry } from "./map";
import { get } from "./client";
import { ENDPOINTS } from "../endpoints";
import { fetchBansByCountry } from "../map";
import { get } from "../client";
vi.mock("./client", () => ({
vi.mock("../client", () => ({
get: vi.fn(),
}));