Flatten lib/types/title.ts → lib/types.ts and update all imports

- Rename `lib/types/title.ts` → `lib/types.ts` (remove nested directory)
- Update all imports across services, atoms, components, and utils
  from `@/lib/types/title` to `@/lib/types`
This commit is contained in:
2026-03-08 12:26:00 -04:00
parent 609f984aa0
commit a7b3600d15
18 changed files with 17 additions and 16 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
import { atom } from "jotai";
import type { Season } from "@/lib/types/title";
import type { Season } from "@/lib/types";
export const titleIdAtom = atom("");
export const titleTypeAtom = atom<"movie" | "tv">("movie");