refactor: rename mockData.ts to mocks.ts and update import paths.

This commit is contained in:
2025-12-16 08:04:26 -05:00
parent 45bf96e764
commit 9b17f5bcfe
6 changed files with 5 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ export async function fetchTitleFromAnilist(
token?: string | undefined,
): Promise<Title | undefined> {
if (useMockData()) {
const { mockTitleDetails } = await import("~/mocks/mockData");
const { mockTitleDetails } = await import("~/mocks");
return mockTitleDetails();
}