| 4 | import type { TranslationKey } from "@/lib/i18n"; |
| 5 | |
| 6 | interface Props { |
| 7 | mode: QueryMode; |
| 8 | onChange: (mode: QueryMode) => void; |
| 9 | } |
| 10 | |
| 11 | const MODE_DESC_KEY: Record<QueryMode, TranslationKey> = { |
| 12 | quick: "mode.quick.desc", |
nothing calls this directly
no outgoing calls
no test coverage detected