fix: rename quality tiers to Fast/HD/Max/Ultra, fix linter-broken hook

- Renamed quality labels: Balanced->HD, Best->Max (shorter, fits 4-col grid)
- Fixed use-tool-processor.ts references broken by linter reformatting
This commit is contained in:
Siddharth Kumar Sah
2026-04-12 18:20:54 +08:00
parent 93dd37017c
commit 7995d13c81
2 changed files with 47 additions and 31 deletions
@@ -43,8 +43,8 @@ const SUBJECT_OPTIONS: { value: SubjectType; label: string; icon: typeof User }[
const ALL_QUALITY_OPTIONS: { value: Quality; label: string; peopleOnly?: boolean }[] = [
{ value: "fast", label: "Fast" },
{ value: "balanced", label: "Balanced" },
{ value: "best", label: "Best" },
{ value: "balanced", label: "HD" },
{ value: "best", label: "Max" },
{ value: "ultra", label: "Ultra", peopleOnly: true },
];